Claude Platform Docs

To enable the Compliance API, see the setup guide.

Set up the Compliance API

Lister les sessions distantes

GET/v1/compliance/apps/sessions/remote

Liste les sessions distantes (sessions Cowork exécutées dans des environnements cloud gérés par Anthropic) dans les organisations que la clé est autorisée à lire.

Chaque entrée ne contient que les métadonnées de session ; récupérez la transcription d'une session via le point de terminaison des messages. Par défaut, la liste couvre toutes ces organisations ; passez jusqu'à 500 valeurs organization_ids[] pour la restreindre. Passez de 1 à 10 valeurs user_ids[] pour limiter la liste à des utilisateurs spécifiques : ce filtre correspond à l'utilisateur propriétaire de la session, donc les sessions appartenant à un agent sont exclues dès qu'il est défini. Délimitez les résultats dans le temps avec les paramètres de plage created_at (created_at.gte, created_at.gt, created_at.lt, created_at.lte ; RFC 3339). Il n'existe pas de filtre updated_at.

Les résultats sont triés du plus récent au plus ancien par created_at, avec au plus limit sessions par page (100 par défaut, 500 au maximum). La pagination est unidirectionnelle (vers l'avant uniquement) : repassez la valeur next_page de la réponse comme page pour récupérer la page suivante, et arrêtez lorsque next_page est null.

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

Filter remote sessions created after this time (RFC 3339 format)

formatdate-time
gte: optional string

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

formatdate-time
lt: optional string

Filter remote sessions created before this time (RFC 3339 format)

formatdate-time
lte: optional string

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

formatdate-time
limit: optional number

Maximum results (default: 100, max: 500)

default100
maximum500
minimum1
organization_ids: optional array of string

Filter to specific child organization identifiers. Omit to enumerate every child organization the key may read.

maxItems500
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.

user_ids: optional array of string

Filter to sessions owned by specific users (max 10 per request). Agent-owned sessions are excluded when this filter is set.

maxItems10
Headers
"x-api-key": optional string
Returns
data: array of object{ id, agent_id, claude_project_id, 7 more }
id: string

Remote session identifier

agent_id: string or null

Identifier of the automated agent that owns the session. Null for user-owned sessions. At most one of user and agent_id is set.

claude_project_id: string or null

ID of the project the session is bound to. Null when the session has no project binding.

created_at: string

When the session was created (RFC 3339, UTC)

formatdate-time
organization_uuid: string

UUID of the organization the session belongs to

product_surface: string or null

The Claude product the session was created from. Currently cowork_remote, for Cowork sessions started on claude.ai web or mobile. More values will appear as other surfaces launch, so treat any unrecognized value as an unclassified surface rather than an error. Null for sessions created before this field was recorded, for surfaces that do not stamp it, and for unrecognized tag values.

started_by_user: object{ id, email_address } or null

A user associated with a remote session.

id: string

User identifier

email_address: string or null

User's email address. Null when the user is no longer a member of an organization the key may read — id remains set so attribution is preserved. The messages endpoint does not resolve email addresses; this field is always null there.

status: string

Session lifecycle state. One of active, paused, archived, or failed — the lifecycle states the owning product surface exposes — plus pending, a brief transient state that resolves before any transcript content exists. The list endpoint includes pending; the messages endpoint returns 404 for it. Deleted sessions are not returned on either endpoint. Treat unrecognized values as an unknown state rather than an error.

updated_at: string

When the session was last modified (RFC 3339, UTC)

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

A user associated with a remote session.

id: string

User identifier

email_address: string or null

User's email address. Null when the user is no longer a member of an organization the key may read — id remains set so attribution is preserved. The messages endpoint does not resolve email addresses; this field is always null there.

next_page: string or null

Opaque page token; pass as page to retrieve the next page. Null when no rows exist after this page. Treat this value as opaque; do not parse or store it long-term, as the format may change without notice.

Lister les sessions distantes
cURL
curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
    -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
Returns Examples
Response 200
{
  "data": [
    {
      "id": "cse_01A0000000000000000000000",
      "organization_uuid": "00000000-0000-0000-0000-000000000000",
      "user": {
        "id": "user_01A0000000000000000000000",
        "email_address": "user@example.com"
      },
      "status": "active",
      "created_at": "2026-01-02T03:04:05.000000Z",
      "updated_at": "2026-01-02T03:04:05.000000Z",
      "product_surface": "cowork_remote",
      "claude_project_id": "claude_proj_01Nm7PqRsTuVwXyZaBcDeFgH"
    }
  ],
  "next_page": "page_AAE..."
}