Get Agent Session Executions
Return the session's executions with their launch context — most notably system_prompt_append, the text Ellipsis appends to Claude Code's default system prompt (platform section + response instructions + the config's customer instructions). Per execution because each cold wake persists its own launch config (a config edit or replay override between wakes changes it).
Return the session's executions with their launch context — most notably system_prompt_append, the text Ellipsis appends to Claude Code's default system prompt (platform section + response instructions + the config's customer instructions).
Per execution because each cold wake persists its own launch config (a config edit or replay override between wakes changes it).
Authorization
HTTPBearer In: header
Path Parameters
Header Parameters
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/sessions/string/executions"{ "executions": [ { "agent_session_id": "string", "attempt_index": 0, "created_at": "2019-08-24T14:15:22Z", "execution_index": 0, "exit_status": "string", "id": "string", "model": "string", "query": "string", "resumed": true, "status": "running", "system_prompt_append": "string", "wake_index": 0 } ]}Get Agent Session
Return one session in the public wire shape — the same shape the stream's session frames carry, with attributed_user and stopped_by_user resolved at read time. The heavy near-static blobs (config snapshot, input/output) live on the detail endpoints, not here.
Get Agent Session Ide
Return the IDE link for the session's live sandbox: the membership-gated dashboard page, which performs the sandbox proxy handoff itself. No credential is minted here — the URL grants nothing by possession. 409 when the sandbox isn't running (send the session a message to wake it first). Backs the `agent session ide` CLI verb.