cURL
curl --request GET 'https://api.brightalk.ai/agents?limit=20' \
--header "Authorization: Bearer $BRIGHTALK_API_KEY" \
--header "Brightalk-Version: 2026-07-16"const response = await fetch("https://api.brightalk.ai/agents?limit=20", {
method: "GET",
headers: {
Authorization: `Bearer ${process.env.BRIGHTALK_API_KEY}`,
"Brightalk-Version": "2026-07-16",
},
});
console.log(response.status, await response.json());import os
import requests
response = requests.request(
"GET",
"https://api.brightalk.ai/agents?limit=20",
headers={
"Authorization": f"Bearer {os.environ['BRIGHTALK_API_KEY']}",
"Brightalk-Version": "2026-07-16",
},
)
print(response.status_code, response.json()){
"data": [
{
"id": "agt_demo_001",
"name": "Renewal Assistant",
"description": "Handles renewal reminders.",
"language": "zh-Hant",
"availability": "available"
}
],
"next_cursor": "<string>"
}Agents
List eligible AI voice agents
Returns organization-owned agents currently eligible for outbound AI calls. Results use newest-first opaque cursor pagination. Every response includes Brightalk-Version and X-Request-Id; rate-limited responses also expose the effective bucket counters.
GET
/
agents
cURL
curl --request GET 'https://api.brightalk.ai/agents?limit=20' \
--header "Authorization: Bearer $BRIGHTALK_API_KEY" \
--header "Brightalk-Version: 2026-07-16"const response = await fetch("https://api.brightalk.ai/agents?limit=20", {
method: "GET",
headers: {
Authorization: `Bearer ${process.env.BRIGHTALK_API_KEY}`,
"Brightalk-Version": "2026-07-16",
},
});
console.log(response.status, await response.json());import os
import requests
response = requests.request(
"GET",
"https://api.brightalk.ai/agents?limit=20",
headers={
"Authorization": f"Bearer {os.environ['BRIGHTALK_API_KEY']}",
"Brightalk-Version": "2026-07-16",
},
)
print(response.status_code, response.json()){
"data": [
{
"id": "agt_demo_001",
"name": "Renewal Assistant",
"description": "Handles renewal reminders.",
"language": "zh-Hant",
"availability": "available"
}
],
"next_cursor": "<string>"
}Authorizations
Use a server-side Brightalk API key in the Authorization header.
Headers
Selects the date-based API version. Omission uses the organization’s pinned default.
Allowed value:
"2026-07-16"A caller-generated correlation value matching [A-Za-z0-9._:-]{1,64}. Invalid values are replaced.
Maximum string length:
64Pattern:
^[A-Za-z0-9._:-]{1,64}$Query Parameters
Number of resources to return. Defaults to 20 and is capped at 100.
Required range:
1 <= x <= 100An opaque cursor returned by the previous page.
Required string length:
1 - 2048