Skip to main content
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>'
import requests

url = "https://api.bland.ai/v1/calls/active"

headers = {
"authorization": "<authorization>",
"x-bland-org-id": "<x-bland-org-id>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {
method: 'GET',
headers: {authorization: '<authorization>', 'x-bland-org-id': '<x-bland-org-id>'}
};

fetch('https://api.bland.ai/v1/calls/active', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/calls/active",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"authorization: <authorization>",
"x-bland-org-id: <x-bland-org-id>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.bland.ai/v1/calls/active"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("authorization", "<authorization>")
req.Header.Add("x-bland-org-id", "<x-bland-org-id>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.bland.ai/v1/calls/active")
.header("authorization", "<authorization>")
.header("x-bland-org-id", "<x-bland-org-id>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.bland.ai/v1/calls/active")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["authorization"] = '<authorization>'
request["x-bland-org-id"] = '<x-bland-org-id>'

response = http.request(request)
puts response.read_body
{
  "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
}

Docs for agents: llms.txt