---
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, its shared budget and its spend

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
  - `spend` number, nullable
  - `budget` AccessGroupBudget
    - `budget_id` string, required
    - `max_budget` number, nullable
    - `soft_budget` number, nullable
    - `budget_duration` string, nullable
    - `budget_reset_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-18** `082b5fabd909` — 4 info
  - added the optional property `budget` to the response with the `200` status
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status
  - added the optional property `spend` to the response with the `200` status

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/access_group/:access_group/info/get.md)

---

[API](https://skmtc.dev/flock/apis/litellm-api.md) · [All operations](https://skmtc.dev/flock/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc.dev/flock/apis/litellm-api/revisions/3b2b241e4b0b?raw)
