---
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

---

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