---
title: "User Info"
method: GET
path: "/user/info"
tags: ["Internal User management"]
---

# User Info

`GET /user/info`

[10/07/2024]
Note: To get all users (+pagination), use `/user/list` endpoint.


Use this to get user information. (user row + all user key info)

Example request
```
curl -X GET 'http://localhost:4000/user/info?user_id=krrish7%40berri.ai'     --header 'Authorization: Bearer sk-1234'
```

## Query parameters

- `user_id` string, nullable — User ID in the request parameters

## Response `200`

Successful Response

- UserInfoResponse
  - `user_id` string, nullable, required
  - `user_info` union, required
    - object
    - BaseModel
  - `keys` unknown[], required
    - unknown
  - `teams` unknown[], required
    - unknown

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-18** `082b5fabd909` — 2 info
  - 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

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/user/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/c71315002afa?raw)
