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

# Get Session

> Retrieve a single demo session with full intent signals and metadata

# Get Session

Retrieves a single demo session by ID, including the full intent signal breakdown, duration, and replay URL.

## Request

```bash theme={null}
GET https://api.repixa.io/v1/sessions/{sessionId}
Authorization: Bearer YOUR_API_KEY
```

### Path parameters

| Parameter   | Type   | Description                  |
| ----------- | ------ | ---------------------------- |
| `sessionId` | string | The unique ID of the session |

## Response `200`

```json theme={null}
{
  "id": "ses_01hx...",
  "agent_id": "agt_01hx...",
  "contact_id": "cnt_01hx...",
  "status": "completed",
  "intent_score": 82,
  "duration_seconds": 742,
  "meeting_booked": true,
  "replay_url": "https://app.repixa.io/sessions/ses_01hx...",
  "signals": {
    "interest": 75,
    "objections": 2,
    "buying_signals": 4
  },
  "started_at": "2026-05-20T14:00:00Z",
  "ended_at": "2026-05-20T14:12:22Z"
}
```
