> ## Documentation Index
> Fetch the complete documentation index at: https://opensandbox-oc-s-762ac928075c46d2828bcb22.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Session

Get a specific session.

<ParamField path="agentId" type="string" required>
  Agent ID
</ParamField>

<ParamField path="id" type="string" required>
  Session ID
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "sess_98adcc7e",
    "agent_id": "issue-resolver",
    "status": "running",
    "input": { "repo": "acme/backend", "issue_number": 42 },
    "result": null,
    "preview_url": null,
    "metadata": { "trigger": "github_webhook" },
    "created_at": "2026-04-09T10:30:00Z",
    "updated_at": "2026-04-09T10:30:00Z"
  }
  ```
</ResponseExample>
