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

# Get an agent

> GET /v1/agents/:id

Get a single agent by ID.

## Request

```bash theme={null}
GET /v1/agents/:id
Authorization: Bearer sk_live_YOUR_KEY
```

## Response

```json theme={null}
{
  "id": "agt_abc123",
  "name": "PortfolioBot",
  "issuer_domain": "apexwealth.com",
  "description": "Reads portfolio data",
  "scopes": ["read:portfolio", "read:transactions"],
  "status": "active",
  "created_at": "2026-03-26T18:00:00.000Z",
  "expires_at": "2026-03-27T18:00:00.000Z",
  "revoked_at": null,
  "revocation_reason": null,
  "verification_count": 142
}
```
