Claude Platform Docs

List projects

GET/v1/compliance/apps/projects

Lists project metadata with filtering capabilities. Results are sorted chronologically (time ascending) by created_at.

Query parameters
created_at: optional object{ gt, gte, lt, lte }
gt: optional string

Filter projects created after this time (RFC 3339 format)

formatdate-time
gte: optional string

Filter projects created at or after this time (RFC 3339 format)

formatdate-time
lt: optional string

Filter projects created before this time (RFC 3339 format)

formatdate-time
lte: optional string

Filter projects created at or before this time (RFC 3339 format)

formatdate-time
limit: optional number

Maximum results (default: 20, max: 100)

default20
maximum100
minimum1
organization_ids: optional array of string

Filter by organization IDs (accepts org_... or organization UUID). Enumerate IDs via GET /v1/compliance/organizations.

page: optional string

Opaque pagination token from a previous response's next_page field. Pass this to retrieve the next page of results. 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.

updated_at: optional object{ gt, gte, lt, lte }
gt: optional string

Filter projects updated after this time (RFC 3339 format)

formatdate-time
gte: optional string

Filter projects updated at or after this time (RFC 3339 format)

formatdate-time
lt: optional string

Filter projects updated before this time (RFC 3339 format)

formatdate-time
lte: optional string

Filter projects updated at or before this time (RFC 3339 format)

formatdate-time
user_ids: optional array of string

Filter by user IDs. Enumerate IDs via GET /v1/compliance/organizations/{org_uuid}/users.

Headers
"x-api-key": optional string
Returns
data: array of object{ id, created_at, deleted_at, 6 more }

List of projects sorted by creation date ascending

id: string

Project identifier (tagged ID)

created_at: string

Project creation timestamp

formatdate-time
deleted_at: string or null

Timestamp when the project was deleted by an end user, or null otherwise

formatdate-time
is_private: boolean

If false, the project is visible to all organization members; if true the project is accessible only to the creator and specified collaborators

name: string

Project name

organization_uuid: string

Organization UUID this project belongs to

updated_at: string

Project last update timestamp

formatdate-time
user: object{ id, email_address } or null

The user who created a project or project document.

Fields that reference this type are null when the creator's account has been deleted or the creator is no longer a member of an organization the key may read.

id: string

User identifier (tagged ID)

email_address: string

User's email address

organization_id: stringDeprecated

Organization identifier (tagged ID)

has_more: boolean

Whether more records exist beyond the current result set

next_page: string or null

Token to retrieve the next page. Use this as the 'page' parameter in your next request

List projects

cURL
curl https://api.anthropic.com/v1/compliance/apps/projects \
    -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
{
  "data": [
    {
      "id": "claude_proj_abc123",
      "name": "Q4 Product Planning",
      "created_at": "2025-06-01T10:00:00Z",
      "updated_at": "2025-06-15T14:30:00Z",
      "is_private": true,
      "organization_id": "org_abc123",
      "organization_uuid": "abc12345-6789-0abc-def0-123456789abc",
      "user": {
        "id": "user_xyz456",
        "email_address": "user@example.com"
      }
    }
  ],
  "has_more": true,
  "next_page": "page_eyJjcmVhdGVkX2F0IjoiMjAyNS0wNi0wMVQxMDowMDowMFoiLCJ1dWlkIjoiYWJjMTIzIn0="
}
Returns Examples
{
  "data": [
    {
      "id": "claude_proj_abc123",
      "name": "Q4 Product Planning",
      "created_at": "2025-06-01T10:00:00Z",
      "updated_at": "2025-06-15T14:30:00Z",
      "is_private": true,
      "organization_id": "org_abc123",
      "organization_uuid": "abc12345-6789-0abc-def0-123456789abc",
      "user": {
        "id": "user_xyz456",
        "email_address": "user@example.com"
      }
    }
  ],
  "has_more": true,
  "next_page": "page_eyJjcmVhdGVkX2F0IjoiMjAyNS0wNi0wMVQxMDowMDowMFoiLCJ1dWlkIjoiYWJjMTIzIn0="
}