> ## 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 Agent

> Retrieve a single agent by ID

# Get Agent

Retrieves a single agent by its ID.

## Request

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

### Path parameters

| Parameter | Type   | Description                |
| --------- | ------ | -------------------------- |
| `agentId` | string | The unique ID of the agent |

## Response `200`

```json theme={null}
{
  "id": "agt_01hx4k2m9n3p",
  "name": "Laura - SaaS Demo",
  "sandbox_url": "https://sandbox.yourdomain.com",
  "status": "active",
  "created_at": "2026-04-01T10:00:00Z",
  "updated_at": "2026-05-10T14:32:00Z"
}
```
