Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

Get project details

api/compliance/apps/projects/retrieve

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

api/compliance/apps/projects/retrieve Changed · +21 / -18 lines

# Get project details ## Path parameters ## Headers ## Returns ## Example ### Response (200) ## Get project details ### Path Parameters ### Header Parameters ### Returns ### Example #### Response

from line 1
----
-title: Get project details
-url: https://platform.claude.com/docs/en/api/compliance/apps/projects/retrieve
----
+# Get project details
 
-## Get project details
+**GET** `/v1/compliance/apps/projects/{project_id}`
 
-**get** `/v1/compliance/apps/projects/{project_id}`
-
 Get detailed information for a specific project.
 
-### Path Parameters
+## Path parameters
 
 - `project_id: string`
 
   The project ID (tagged ID, e.g., claude_proj_abc123)
 
-### Header Parameters
+## Headers
 
 - `"x-api-key": optional string`
 
-### Returns
+## Returns
 
 - `id: string`
 
from line 32
 
   Project creation timestamp
 
+  format: date-time
+
 - `deleted_at: string or null`
 
   Timestamp when the project was deleted by an end user, or null otherwise
 
+  format: date-time
+
 - `description: string`
 
   Project description
from line 56
 
   Project name
 
-- `organization_id: string`
-
-  Organization identifier (tagged ID)
-
 - `organization_uuid: string`
 
   Organization UUID this project belongs to
from line 64
 
   Project last update timestamp
 
-- `user: object { id, email_address }  or null`
+  format: date-time
 
+- `user: object or null`
+
   The user who created a project or project document.
 
   Fields that reference this type are null when the creator's account has
from line 82
 
     User's email address
 
-### Example
+- `organization_id: string`
 
-```http
+  **Deprecated**
+
+  Organization identifier (tagged ID)
+
+## Example
+
+```bash
 curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
     -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {