Get project details
get /v1/compliance/apps/projects/{project_id}
Get detailed information for a specific project.
Returns: Detailed project information including description, instructions, and counts
Path Parameters
-
project_id: stringThe project ID (tagged ID, e.g., claude_proj_abc123)
Header Parameters
"x-api-key": optional string
Returns
-
id: stringProject identifier (tagged ID)
-
attachments_count: numberNumber of attachments contained within this project
-
chats_count: numberNumber of chats contained within this project
-
created_at: stringProject creation timestamp
-
deleted_at: stringTimestamp when the project was deleted by an end user, or null otherwise
-
description: stringProject description
-
instructions: stringProject's custom instructions / prompt
-
is_private: booleanIf false, the project is visible to all organization members; if true the project is accessible only to the creator and specified collaborators
-
name: stringProject name
-
organization_id: stringOrganization identifier (tagged ID)
-
organization_uuid: stringOrganization UUID this project belongs to
-
updated_at: stringProject last update timestamp
-
user: object { id, email_address }User information for project creator.
-
id: stringUser identifier (tagged ID)
-
email_address: stringUser's email address
-
Example
curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
Response
{
"id": "id",
"attachments_count": 0,
"chats_count": 0,
"created_at": "2019-12-27T18:11:19.117Z",
"deleted_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"instructions": "instructions",
"is_private": true,
"name": "name",
"organization_id": "organization_id",
"organization_uuid": "organization_uuid",
"updated_at": "2019-12-27T18:11:19.117Z",
"user": {
"id": "id",
"email_address": "email_address"
}
}