> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentcell.live/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Session

> Get status and details of a session

## Path parameters

| Parameter    | Type   | Description    |
| ------------ | ------ | -------------- |
| `session_id` | string | The session ID |

## Request

```bash theme={null}
curl https://agentcell.live/api/sessions/SESSION_ID \
  -H "X-API-Key: YOUR_API_KEY"
```

## Response

```json theme={null}
{
  "id": "abc123",
  "status": "ready",
  "stream_url": "https://agentcell.live/scrcpy/?action=stream&udid=...",
  "adb_serial": "172.18.0.5:5555",
  "trial_expires_at": "2025-01-15T10:20:00Z",
  "created_at": "2025-01-15T10:00:00Z",
  "updated_at": "2025-01-15T10:00:30Z"
}
```

Use this endpoint to poll for boot completion. When `status` is `"ready"`, the phone is available for tasks.
