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

List projects

api/compliance/apps/projects/list

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/list Changed · +42 / -21 lines

# List projects ## Query parameters ## Headers ## Returns ## Example ### Response (200) ## List projects ### Query Parameters ### Header Parameters ### Returns ### Example #### Response

from line 1
----
-title: List projects
-url: https://platform.claude.com/docs/en/api/compliance/apps/projects/list
----
+# List projects
 
-## List projects
+**GET** `/v1/compliance/apps/projects`
 
-**get** `/v1/compliance/apps/projects`
-
 Lists project metadata with filtering capabilities. Results
 are sorted chronologically (time ascending) by created_at.
 
-### Query Parameters
+## Query parameters
 
-- `created_at: optional object { gt, gte, lt, lte }`
+- `created_at: optional object`
 
   - `gt: optional string`
 
     Filter projects created after this time (RFC 3339 format)
 
+    format: date-time
+
   - `gte: optional string`
 
     Filter projects created at or after this time (RFC 3339 format)
 
+    format: date-time
+
   - `lt: optional string`
 
     Filter projects created before this time (RFC 3339 format)
 
+    format: date-time
+
   - `lte: optional string`
 
     Filter projects created at or before this time (RFC 3339 format)
 
+    format: date-time
+
 - `limit: optional number`
 
   Maximum results (default: 20, max: 100)
 
+  default: 20, maximum: 100, minimum: 1
+
 - `organization_ids: optional array of string`
 
   Filter by organization IDs (accepts `org_...` or organization UUID). Enumerate IDs via `GET /v1/compliance/organizations`.
from line 47
 
   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 }`
+- `updated_at: optional object`
 
   - `gt: optional string`
 
     Filter projects updated after this time (RFC 3339 format)
 
+    format: date-time
+
   - `gte: optional string`
 
     Filter projects updated at or after this time (RFC 3339 format)
 
+    format: date-time
+
   - `lt: optional string`
 
     Filter projects updated before this time (RFC 3339 format)
 
+    format: date-time
+
   - `lte: optional string`
 
     Filter projects updated at or before this time (RFC 3339 format)
 
+    format: date-time
+
 - `user_ids: optional array of string`
 
   Filter by user IDs. Enumerate IDs via `GET /v1/compliance/organizations/{org_uuid}/users`.
 
-### Header Parameters
+## Headers
 
 - `"x-api-key": optional string`
 
-### Returns
+## Returns
 
-- `data: array of object { id, created_at, deleted_at, 6 more }`
+- `data: array of object`
 
   List of projects sorted by creation date ascending
 
from line 95
 
     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
+
   - `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
from line 111
 
     Project name
 
-  - `organization_id: string`
-
-    Organization identifier (tagged ID)
-
   - `organization_uuid: string`
 
     Organization UUID this project belongs to
from line 119
 
     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 137
 
       User's email address
 
+  - `organization_id: string`
+
+    **Deprecated**
+
+    Organization identifier (tagged ID)
+
 - `has_more: boolean`
 
   Whether more records exist beyond the current result set
from line 151
 
   Token to retrieve the next page. Use this as the 'page' parameter in your next request
 
-### Example
+## Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/compliance/apps/projects \
     -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {