GET /v1/instances
Returns all non-deleted instances belonging to the authenticated user, ordered by creation date (newest first).
Request
| Header | Value |
|---|
Authorization | Bearer <token> |
Response 200
Returns an array of instance objects.
| Field | Type | Description |
|---|
id | string | Unique instance ID |
name | string | Instance label |
status | string | CREATED, CONFIGURED, or ACTIVE |
metadata | object | Instance metadata |
created_at | string | ISO 8601 timestamp |
updated_at | string | ISO 8601 timestamp |
[
{
"id": "inst_abc123",
"name": "sales-team-a",
"status": "ACTIVE",
"metadata": {},
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-01T10:05:00Z"
},
{
"id": "inst_def456",
"name": "support-line",
"status": "CONFIGURED",
"metadata": {},
"created_at": "2026-02-15T08:00:00Z",
"updated_at": "2026-02-15T08:10:00Z"
}
]
Deleted instances (status DELETED) are excluded from this list.
Errors
| Code | Description |
|---|
401 | Missing or invalid token |
Example
curl https://cawme.com/api/v1/instances \
-H "Authorization: Bearer <token>"