Get Campaign
Retrieve a specific campaign with detailed metrics.
GET
/campaigns/{campaign_id}Get campaign details including status, progress, and per-contact metrics.
Path Parameters
Campaign ID
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
campaign_id | string | Yes | Campaign ID |
Response 200
{
"id": "camp_a1b2c3d4",
"name": "Follow-up Campaign",
"status": "running",
"type": "voice",
"agent_id": "ag_c47e7c97_b2f2",
"total_contacts": 150,
"completed": 45,
"failed": 3,
"in_progress": 5,
"pending": 97,
"scheduled_at": "2026-03-10T09:00:00Z",
"started_at": "2026-03-10T09:00:02Z",
"created_at": "2026-03-07T14:00:00Z"
}Errors
| Code | Description |
|---|---|
401 | Missing or invalid authentication |
404 | Campaign not found |