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

Artifacts

api/compliance/code/artifacts

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/code/artifacts Changed · +47 / -30 lines

### Query parameters ### Headers #### Response (200) ### Path parameters ### Headers ### Path parameters ### Headers #### Response (200) ## Domain types ### Query Parameters ### Header Parameters #### Response ### Path Parameters ### Header Parameters ### Path Parameters ### Header Parameters #### Response ## Domain Types

from line 1
----
-title: Artifacts
-url: https://platform.claude.com/docs/en/api/compliance/code/artifacts
----
-
 # Artifacts
 
 ## List Code Artifacts
 
-**get** `/v1/compliance/apps/code/artifacts`
+**GET** `/v1/compliance/apps/code/artifacts`
 
 List Claude Code Artifacts owned by organizations under the parent
 organization.
from line 17
 Artifacts owned by a since-deleted child organization are not
 returned.
 
-### Query Parameters
+### Query parameters
 
 - `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, up to 500). Enumerate IDs via `GET /v1/compliance/organizations`.
 
+  maxItems: 500
+
 - `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 }`
+- `updated_at: optional object`
 
   - `gt: optional string`
 
     Return only Artifacts updated after this time (RFC 3339 format). See `updated_at.gte` for the completeness caveat.
 
+    format: date-time
+
   - `gte: optional string`
 
     Return only Artifacts updated at or after this time (RFC 3339 format). Time filters match an eventually-consistent index and Artifacts published before this field was recorded never match โ€” omit the time filter for compliance-complete enumeration. For incremental export, apply a generous overlap margin between windows and dedupe by `id`: adjacent tiling silently misses items whose index update lagged their publish.
 
+    format: date-time
+
   - `lt: optional string`
 
     Return only Artifacts updated before this time (RFC 3339 format). Multiple time operators are AND-ed to the tightest bound. See `updated_at.gte` for the completeness caveat.
 
+    format: date-time
+
   - `lte: optional string`
 
     Return only Artifacts updated at or before this time (RFC 3339 format). See `updated_at.gte` for the completeness caveat.
 
+    format: date-time
+
 - `user_ids: optional array of string`
 
   Filter by owner user IDs (up to 200). Enumerate IDs via `GET /v1/compliance/organizations/{org_uuid}/users`.
 
-### Header Parameters
+  maxItems: 200
 
+### Headers
+
 - `"x-api-key": optional string`
 
 ### Returns
 
-- `data: array of object { id, organization_uuid, owner_user_id, 5 more }`
+- `data: array of object`
 
   Page of Artifacts
 
from line 109
 
     Artifact last update timestamp, or null for Artifacts published before this field was recorded
 
-  - `user: object { id, email_address }  or null`
+    format: date-time
 
+  - `user: object or null`
+
     The user who owns a Code Artifact.
 
     Fields that reference this type are null when the Artifact was
from line 128
 
       User's email address
 
-  - `versions: array of object { id, created_at, name }`
+  - `versions: array of object`
 
     Up to roughly 20 most-recently-published versions of this Artifact (older versions are not retained). Metadata only โ€” use `GET /v1/compliance/apps/code/artifacts/{artifact_id}/versions/{version_id}` to download a version's content.
 
from line 140
 
       When this version was published
 
+      format: date-time
+
     - `name: string`
 
       Artifact title at this version. Falls back to the version identifier when the title for an older version is no longer retained.
from line 156
 
 ### Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/compliance/apps/code/artifacts \
     -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
 ```
 
-#### Response
+#### Response (200)
 
 ```json
 {
from line 193
 
 ## Download Code Artifact Version Content
 
-**get** `/v1/compliance/apps/code/artifacts/{artifact_id}/versions/{version_id}`
+**GET** `/v1/compliance/apps/code/artifacts/{artifact_id}/versions/{version_id}`
 
 Streams the content of one version of a Claude Code Artifact as the
 response body.
from line 208
 only truncation signal for encoded content. `Content-MD5` is emitted
 only for identity-stored content; validate against it when present.
 
-### Path Parameters
+### Path parameters
 
 - `artifact_id: string`
 
from line 218
 
   Opaque version identifier from the Artifact's `versions` list
 
-### Header Parameters
+### Headers
 
 - `"x-api-key": optional string`
 
 ### Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID/versions/$VERSION_ID \
     -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
 ```
from line 231
 
 ## Delete Code Artifact
 
-**delete** `/v1/compliance/apps/code/artifacts/{artifact_id}`
+**DELETE** `/v1/compliance/apps/code/artifacts/{artifact_id}`
 
 Permanently deletes a Code Artifact and all its versions. This is a
 destructive operation that cannot be undone. A 200 response means the
from line 242
 organization. Returns 404 on a repeated delete of an already-deleted
 Artifact.
 
-### Path Parameters
+### Path parameters
 
 - `artifact_id: string`
 
   The Artifact ID (tagged ID, e.g., cart_abc123)
 
-### Header Parameters
+### Headers
 
 - `"x-api-key": optional string`
 
from line 262
 
   Constant string confirming deletion
 
-  - `"code_artifact_deleted"`
+  default: code_artifact_deleted
 
 ### Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID \
     -X DELETE \
     -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
 ```
 
-#### Response
+#### Response (200)
 
 ```json
 {
from line 281
 }
 ```
 
-## Domain Types
+## Domain types
 
 ### Artifact List Response
 
-- `ArtifactListResponse object { id, organization_uuid, owner_user_id, 5 more }`
+- `ArtifactListResponse object`
 
   A hosted site published via Claude Code.
 
from line 321
 
     Artifact last update timestamp, or null for Artifacts published before this field was recorded
 
-  - `user: object { id, email_address }  or null`
+    format: date-time
 
+  - `user: object or null`
+
     The user who owns a Code Artifact.
 
     Fields that reference this type are null when the Artifact was
from line 340
 
       User's email address
 
-  - `versions: array of object { id, created_at, name }`
+  - `versions: array of object`
 
     Up to roughly 20 most-recently-published versions of this Artifact (older versions are not retained). Metadata only โ€” use `GET /v1/compliance/apps/code/artifacts/{artifact_id}/versions/{version_id}` to download a version's content.
 
from line 352
 
       When this version was published
 
+      format: date-time
+
     - `name: string`
 
       Artifact title at this version. Falls back to the version identifier when the title for an older version is no longer retained.
from line 360
 
 ### Artifact Delete Response
 
-- `ArtifactDeleteResponse object { id, type }`
+- `ArtifactDeleteResponse object`
 
   Response for deleting a Code Artifact.
 
from line 372
 
     Constant string confirming deletion
 
-    - `"code_artifact_deleted"`
+    default: code_artifact_deleted