To enable the Compliance API, see the setup guide.
Set up the Compliance API원격 세션 목록 조회
GET/v1/compliance/apps/sessions/remote
키가 읽을 수 있는 조직 전체의 원격 세션(Anthropic 관리 클라우드 환경에서 실행되는 Cowork 세션)을 나열합니다.
각 항목은 세션 메타데이터만 포함합니다. 세션의 대화 기록은 메시지 엔드포인트에서 조회하세요. 기본적으로 목록은 해당하는 모든 조직을 포함합니다. 범위를 좁히려면 최대 500개의 organization_ids[] 값을 전달하세요. 특정 사용자로 목록 범위를 지정하려면 1~10개의 user_ids[] 값을 전달하세요. 이 필터는 세션의 소유 사용자와 일치하므로, 설정된 경우 에이전트 소유 세션은 제외됩니다. created_at 범위 매개변수(created_at.gte, created_at.gt, created_at.lt, created_at.lte; RFC 3339)로 결과를 시간 범위로 제한하세요. updated_at 필터는 없습니다.
결과는 created_at 기준 최신순으로 정렬되며, 페이지당 최대 limit개의 세션이 반환됩니다(기본값 100, 최대 500). 페이지네이션은 정방향 전용입니다. 다음 페이지를 조회하려면 응답의 next_page 값을 page로 다시 전달하고, next_page가 null이면 중단하세요.
Query parameters
Headers
Returns
원격 세션 목록 조회
cURL
curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"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..."
}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..."
}