# List Chats **GET /api/v1/chats** Retrieves a paginated list of chat sessions for the user's organization. ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Bearer auth ## Parameters ### Query parameters - **limit** (integer) Number of chats per page - **offset** (integer) Offset for pagination ## Responses ### 200 List of chats #### Body: application/json (array[object]) - **created_at** (string) - **id** (integer) - **messages** (array[object]) - **metadata** (string) Store ChatMetadata as JSON string - **organization_id** (integer) - **tags** (string) JSON array of tags as string - **title** (string) - **updated_at** (string) - **user_id** (integer) Nullable for anonymous chats ### 401 Unauthorized (JWT invalid/missing or Org ID not found) #### Body: application/json (object) - ***** (string) ### 500 Failed to list chats #### Body: application/json (object) - ***** (string) [Powered by Bump.sh](https://bump.sh)