---
title: "Get Access Group Info"
method: GET
path: "/access_group/{access_group}/info"
tags: ["model management"]
---

# Get Access Group Info

`GET /access_group/{access_group}/info`

Get information about a specific access group.

Example:
```bash
curl -X GET 'http://localhost:4000/access_group/production-models/info' \
  -H 'Authorization: Bearer sk-1234'
```

Parameters:
- access_group: str - The access group name (URL path parameter)

Returns:
- AccessGroupInfo with the access group details

Raises:
- HTTPException 404: If access group not found

## Path parameters

- `access_group` string, required

## Response `200`

Successful Response

- AccessGroupInfo
  - `access_group` string, required
  - `model_names` string[], required
  - `deployment_count` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/79928a3d37d3/schema)
