Skip to main content
GET
/
batch-calls
List Batch Calls
curl --request GET \
  --url https://api.truedy.ai/api/public/v1/batch-calls \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "batch_c3d4e5f6",
      "name": "Q2 Outreach Campaign",
      "status": "running",
      "agent_id": "agt_f9447372",
      "from_number": "+18005559876",
      "schedule_type": "immediate",
      "scheduled_at": null,
      "timezone": "America/New_York",
      "concurrency": 5,
      "retry_attempts": 2,
      "total_contacts": 500,
      "called": 312,
      "completed": 298,
      "failed": 14,
      "pending": 188,
      "created_at": "2026-04-01T09:00:00Z",
      "updated_at": "2026-04-05T10:22:00Z"
    },
    {
      "id": "batch_d4e5f6g7",
      "name": "Re-engagement Campaign",
      "status": "completed",
      "agent_id": "agt_f9447372",
      "from_number": "+18005559876",
      "schedule_type": "immediate",
      "scheduled_at": null,
      "timezone": "America/New_York",
      "concurrency": 5,
      "retry_attempts": 2,
      "total_contacts": 500,
      "called": 312,
      "completed": 298,
      "failed": 14,
      "pending": 188,
      "created_at": "2026-04-01T09:00:00Z",
      "updated_at": "2026-04-05T10:22:00Z"
    }
  ],
  "meta": {
    "request_id": "req_32e7531c",
    "ts": "2026-04-05T10:22:00Z"
  },
  "pagination": {
    "total": 24,
    "limit": 50,
    "offset": 0,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header: Bearer <your_api_key>

Query Parameters

status
enum<string>

Filter by status

Available options:
draft,
scheduled,
active,
paused,
completed,
failed,
cancelled
limit
integer
default:50

Maximum results per page

Required range: 1 <= x <= 100
offset
integer
default:0

Number of results to skip

Required range: x >= 0

Response

List of batch calls

data
object[]
required
meta
object
required
pagination
object