GET /v1/instances/:instanceId
Returns details for a single instance, including its current active call queue (calls in QUEUED, RINGING, or IN_PROGRESS state).
Request
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Path parameters
| Parameter | Type | Description |
|---|---|---|
instanceId | string | The instance ID (e.g., inst_abc123) |
Response 200
| Field | Type | Description |
|---|---|---|
id | string | Unique instance ID |
name | string | Instance label |
status | string | CREATED, CONFIGURED, or ACTIVE |
metadata | object | Instance metadata |
callQueue | array | Active calls on this instance |
created_at | string | ISO 8601 timestamp |
updated_at | string | ISO 8601 timestamp |
Errors
| Code | Description |
|---|---|
401 | Missing or invalid token |
404 | Instance not found or does not belong to the authenticated user |