GET
/
v1
/
calls
/
active
List Active Calls
curl --request GET \
  --url https://api.bland.ai/v1/calls/active \
  --header 'authorization: <authorization>' \
  --header 'x-bland-org-id: <x-bland-org-id>'
{
  "data": [
    {
      "call_id": "8dd6f762-6c67-4546-aaad-3e59f5e4a09c",
      "user_id": "bdffa9e8-436c-416d-b95f-a77b19ae4411",
      "from": "+18475586665",
      "to": "+13105100966",
      "objective": "You are a 2...",
      "pathway_id": "",
      "start_time": "",
      "international": "false",
      "status": "QUEUED",
      "timestamp": "1758656817432"
    },
    {
      "call_id": "dadbc09a-9b0b-4eb5-b67f-0c7f1206c623",
      "user_id": "bdffa9e8-436c-416d-b95f-a77b19ae4411",
      "from": "+18154728283",
      "to": "+16106876633",
      "objective": "You are a 2...",
      "pathway_id": "",
      "start_time": "",
      "international": "false",
      "status": "IN_PROGRESS",
      "timestamp": "1758656900740"
    }
  ],
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.
x-bland-org-id
string
required
The unique organization ID.

Response

data
array
An array of active call objects. Each object represents one ongoing or queued call.
data[].call_id
string
Unique identifier for the call.
data[].user_id
string
The organization/user ID that initiated the call.
data[].from
string
The originating phone number.
data[].to
string
The destination phone number.
data[].objective
string
The agent prompt or objective that was used to initiate the call.
data[].pathway_id
string
The pathway ID associated with the call, if any.
data[].start_time
string
The call start time (ISO 8601 string). May be empty if the call has not started.
data[].international
string
"true" if the call is international, "false" otherwise.
data[].status
string
Current call status (e.g., QUEUED, IN_PROGRESS).
data[].timestamp
string
Unix epoch (milliseconds) when the call record was created.
errors
null
Always null on success.
{
  "data": [
    {
      "call_id": "8dd6f762-6c67-4546-aaad-3e59f5e4a09c",
      "user_id": "bdffa9e8-436c-416d-b95f-a77b19ae4411",
      "from": "+18475586665",
      "to": "+13105100966",
      "objective": "You are a 2...",
      "pathway_id": "",
      "start_time": "",
      "international": "false",
      "status": "QUEUED",
      "timestamp": "1758656817432"
    },
    {
      "call_id": "dadbc09a-9b0b-4eb5-b67f-0c7f1206c623",
      "user_id": "bdffa9e8-436c-416d-b95f-a77b19ae4411",
      "from": "+18154728283",
      "to": "+16106876633",
      "objective": "You are a 2...",
      "pathway_id": "",
      "start_time": "",
      "international": "false",
      "status": "IN_PROGRESS",
      "timestamp": "1758656900740"
    }
  ],
  "errors": null
}