## List chats ### Query Parameters ### Header Parameters ### Returns ### Example #### Response
The whole hunk
190 lines, first recorded
/
lines
The first capture of this source. The page was already there, and this is what it said.
---
title: List chats
url: https://platform.claude.com/docs/en/api/compliance/apps/chats/list
---
## List chats
**get** `/v1/compliance/apps/chats`
Lists chat metadata with filtering capabilities for targeted
compliance review. Results are sorted chronologically (time ascending)
by the `order_by` key, with ties broken by id.
### Query Parameters
- `after_id: optional string`
Pagination cursor for retrieving the next page of results. To paginate, pass the `last_id` value from the most recent response. Clients should treat this value as an opaque string and not attempt to parse or interpret its contents, as the format may change without notice.
- `before_id: optional string`
Pagination cursor for retrieving the previous page of results. To paginate, pass the `first_id` value from the most recent response. Clients should treat this value as an opaque string and not attempt to parse or interpret its contents, as the format may change without notice.
- `created_at: optional object { gt, gte, lt, lte }`
- `gt: optional string`
Filter chats created after this time (RFC 3339 format)
- `gte: optional string`
Filter chats created at or after this time (RFC 3339 format)
- `lt: optional string`
Filter chats created before this time (RFC 3339 format)
- `lte: optional string`
Filter chats created at or before this time (RFC 3339 format)
- `limit: optional number`
Maximum results (default: 100, max: 1000)
- `order_by: optional "created_at" or "updated_at"`
Sort key for results. `created_at` (default) sorts by chat creation time. `updated_at` sorts by last update time and is only supported for org-wide queries (omit user_ids[]). For org-wide queries, any time filter must match the sort key: `created_at.*` filters require `order_by=created_at`, and `updated_at.*` filters require `order_by=updated_at`.
- `"created_at"`
- `"updated_at"`
- `organization_ids: optional array of string`
Filter by organization IDs (accepts `org_...` or organization UUID). Enumerate IDs via `GET /v1/compliance/organizations`.
- `project_ids: optional array of string`
Filter by project IDs (accepts `claude_proj_...`). Enumerate IDs via `GET /v1/compliance/apps/projects`. Requires user_ids[]; not supported for org-wide queries.
- `updated_at: optional object { gt, gte, lt, lte }`
- `gt: optional string`
Filter chats updated after this time (RFC 3339 format)
- `gte: optional string`
Filter chats updated at or after this time (RFC 3339 format)
- `lt: optional string`
Filter chats updated before this time (RFC 3339 format)
- `lte: optional string`
Filter chats updated at or before this time (RFC 3339 format)
- `user_ids: optional array of string`
Filter to chats created by specific users (max 10 per request). Omit for an org-wide query. Enumerate IDs via `GET /v1/compliance/organizations/{org_uuid}/users`.
### Header Parameters
- `"x-api-key": optional string`
### Returns
- `data: array of object { id, created_at, deleted_at, 8 more }`
List of chat metadata sorted chronologically by the request's `order_by` key (default `created_at`), tie break by id
- `id: string`
Chat ID
- `created_at: string`
Creation timestamp
- `deleted_at: string or null`
Deletion timestamp if deleted
- `href: string`
URL to view this chat in claude.ai
- `model: string or null`
Model selected for this chat (e.g. 'claude-opus-4-7'). May be null for legacy chats that never had a model recorded.
- `name: string`
Chat name/title
- `organization_id: string`
Organization ID this chat belongs to
- `organization_uuid: string`
Organization UUID this chat belongs to
- `project_id: string or null`
Project ID this chat belongs to
- `updated_at: string`
Last update timestamp
- `user: object { id, email_address } or null`
User information for compliance responses.
- `id: string`
User identifier
- `email_address: string`
User's email address
- `first_id: string or null`
Opaque pagination cursor for the first chat in the current result set. Pass as `before_id` on the next request to page backwards. Backward pagination is only supported for per-user queries (`user_ids[]` set); org-wide queries do not accept `before_id`. Clients should treat this value as an opaque string and not attempt to parse or interpret its contents, as the format may change without notice.
- `has_more: boolean`
Whether more records exist beyond the current result set
- `last_id: string or null`
Opaque pagination cursor for the last chat in the current result set. Pass as `after_id` on the next request to page forwards. Clients should treat this value as an opaque string and not attempt to parse or interpret its contents, as the format may change without notice.
### Example
```http
curl https://api.anthropic.com/v1/compliance/apps/chats \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
```
#### Response
```json
{
"data": [
{
"id": "claude_chat_abc123",
"name": "Product Requirements Discussion",
"created_at": "2025-06-07T08:09:10Z",
"updated_at": "2025-06-07T09:10:11Z",
"organization_id": "org_abc123",
"organization_uuid": "abcdef0123-4567-89ab-cdef-0123456789ab",
"project_id": "claude_proj_xyz789",
"model": "claude-opus-4-7",
"user": {
"id": "user_xyz456",
"email_address": "[email protected]"
},
"href": "https://claude.ai/chat/abcdef01-2345-6789-abcd-ef0123456789"
}
],
"has_more": false,
"first_id": "eyJrIjogImNyZWF0ZWRfYXQiLCAidCI6ICIyMDI1LTA2LTA3VDA4OjA5OjEwKzAwOjAwIiwgImlkIjogImFiY2RlZjAxLTIzNDUtNjc4OS1hYmNkLWVmMDEyMzQ1Njc4OSJ9",
"last_id": "eyJrIjogImNyZWF0ZWRfYXQiLCAidCI6ICIyMDI1LTA2LTA3VDA4OjA5OjEwKzAwOjAwIiwgImlkIjogImFiY2RlZjAxLTIzNDUtNjc4OS1hYmNkLWVmMDEyMzQ1Njc4OSJ9"
}
```