Claude Platform Docs

Work

Get Work Item
$ ant beta:environments:work retrieve
GET/v1/environments/{environment_id}/work/{work_id}
Poll for Work
$ ant beta:environments:work poll
GET/v1/environments/{environment_id}/work/poll
Acknowledge Work
$ ant beta:environments:work ack
POST/v1/environments/{environment_id}/work/{work_id}/ack
Record Heartbeat
$ ant beta:environments:work heartbeat
POST/v1/environments/{environment_id}/work/{work_id}/heartbeat
Stop Work
$ ant beta:environments:work stop
POST/v1/environments/{environment_id}/work/{work_id}/stop
List Work Items
$ ant beta:environments:work list
GET/v1/environments/{environment_id}/work
Update Work Item
$ ant beta:environments:work update
POST/v1/environments/{environment_id}/work/{work_id}
Get Queue Statistics
$ ant beta:environments:work stats
GET/v1/environments/{environment_id}/work/stats
Models
beta_self_hosted_work: object{ id, acknowledged_at, created_at, 10 more }

Work resource representing a unit of work in a self-hosted environment.

Work items are queued when sessions are created or when long-dormant sessions receive new messages. The environment worker polls for work to execute in a self-hosted sandbox.

beta_self_hosted_work_heartbeat_response: object{ last_heartbeat, lease_extended, state, 2 more }

Response after recording a heartbeat for a work item.

last_heartbeat: string

RFC 3339 timestamp of the actual heartbeat from DB

lease_extended: boolean

Whether the heartbeat succeeded in extending the lease

state: "queued" or "starting" or "active" or 2 more

Current state of the work item (active/stopping/stopped)

One of the following:
"queued"
"starting"
"active"
"stopping"
"stopped"
ttl_seconds: number

Effective TTL applied to the lease

type: "work_heartbeat"

The type of response

beta_self_hosted_work_list_response: object{ data, next_page }

Response when listing work items with cursor-based pagination.

beta_self_hosted_work_queue_stats: object{ depth, oldest_queued_at, pending, 2 more }

Statistics about the work queue for an environment.

Uses Redis Stream consumer group metrics for O(1) queries.

depth: number

Number of work items waiting to be picked up (lag from consumer group)

oldest_queued_at: string

RFC 3339 timestamp of oldest item in the work stream (includes both queued and pending items), null if stream empty

pending: number

Number of work items being processed (polled but not acknowledged)

type: "work_queue_stats"

The type of object

workers_polling: number

Number of workers that have polled for work in the last 30 seconds. Requires worker_id to be sent with poll requests.

beta_self_hosted_work_stop_request: object{ force }

Request to stop a work item.

force: optional boolean

If true, immediately stop work without graceful shutdown

beta_self_hosted_work_update_request: object{ metadata }

Request to update work item metadata.

metadata: map[string]

Metadata patch. Set a key to a string to upsert it, or to null to delete it. Omit the field to preserve existing metadata.

beta_session_work_data: object{ id, type }

Work data for session work items.

This resource type is used when work represents a session that needs to be executed in a self-hosted environment.

id: string

Session identifier (e.g., 'session_...')

type: "session"

Type of work data