List All Agents
curl --request GET \
--url https://app.closerx.ai/api/v2/list-all-agent/ \
--header 'Company-Name: <company-name>' \
--header 'api_key: <api-key>'import requests
url = "https://app.closerx.ai/api/v2/list-all-agent/"
headers = {
"Company-Name": "<company-name>",
"api_key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Company-Name': '<company-name>', api_key: '<api-key>'}
};
fetch('https://app.closerx.ai/api/v2/list-all-agent/', 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://app.closerx.ai/api/v2/list-all-agent/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Company-Name: <company-name>",
"api_key: <api-key>"
],
]);
$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://app.closerx.ai/api/v2/list-all-agent/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Company-Name", "<company-name>")
req.Header.Add("api_key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.closerx.ai/api/v2/list-all-agent/")
.header("Company-Name", "<company-name>")
.header("api_key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.closerx.ai/api/v2/list-all-agent/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Company-Name"] = '<company-name>'
request["api_key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"total_count": 559,
"data": [
{
"pk": 571,
"agent_name": "add_agent_name",
"agent_id": "agent_77f109e0965c6947df907591b3",
"voice_id": "openai-Shimmer",
"language": "en-US",
"interruption_sensitivity": "1.0",
"voicemail": true,
"voicemail_message": null,
"end_call_after_silence": 10,
"max_call_duration": 10,
"reminder_trigger": 10,
"ambient_sound": null,
"analysis_data": [
"<unknown>"
],
"llm": 577,
"voice_speed": 1,
"voice_temperature": 1,
"volume": 1,
"enable_backchannel": true,
"normalize_for_speech": false,
"enable_transcription_formatting": true,
"reminder_trigger_ms": 10000,
"reminder_max_count": 1,
"boosted_keywords": [
"<unknown>"
],
"ambient_sound_volume": 1,
"voicemail_detection_timeout_ms": 5000,
"begin_message_delay_ms": 0,
"updated_at": "2025-08-26T11:41:37.296105Z",
"is_locked": false,
"calendar_id": null,
"inbound_appoitment": false,
"ring_duration_sec": 30,
"stt_mode": "fast",
"backchannel_words": null,
"backchannel_frequency": 0.8,
"call_scheduling": false,
"agent_crm_type": null,
"voicemail_option": {
"action": {
"type": "hangup"
}
},
"agent_type": "legacy",
"responsiveness": 1,
"pronunciation_dictionary": null,
"vocab_specialization": "general",
"user_dtmf_options": {},
"denoising_mode": "noise-cancellation",
"allow_user_dtmf": true,
"llm_detail": {
"llm_id": "llm_b47e623ae3d8110e6a05241a9799",
"model": null,
"s2s_model": "gpt-4o-mini-realtime"
},
"is_active": false
}
]
}{
"success": true,
"message": "<string>",
"data": {}
}Integrations
List All Agents
Retrieves all configured agents with their full configuration and metadata.
GET
/
v2
/
list-all-agent
/
List All Agents
curl --request GET \
--url https://app.closerx.ai/api/v2/list-all-agent/ \
--header 'Company-Name: <company-name>' \
--header 'api_key: <api-key>'import requests
url = "https://app.closerx.ai/api/v2/list-all-agent/"
headers = {
"Company-Name": "<company-name>",
"api_key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Company-Name': '<company-name>', api_key: '<api-key>'}
};
fetch('https://app.closerx.ai/api/v2/list-all-agent/', 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://app.closerx.ai/api/v2/list-all-agent/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Company-Name: <company-name>",
"api_key: <api-key>"
],
]);
$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://app.closerx.ai/api/v2/list-all-agent/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Company-Name", "<company-name>")
req.Header.Add("api_key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.closerx.ai/api/v2/list-all-agent/")
.header("Company-Name", "<company-name>")
.header("api_key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.closerx.ai/api/v2/list-all-agent/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Company-Name"] = '<company-name>'
request["api_key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"total_count": 559,
"data": [
{
"pk": 571,
"agent_name": "add_agent_name",
"agent_id": "agent_77f109e0965c6947df907591b3",
"voice_id": "openai-Shimmer",
"language": "en-US",
"interruption_sensitivity": "1.0",
"voicemail": true,
"voicemail_message": null,
"end_call_after_silence": 10,
"max_call_duration": 10,
"reminder_trigger": 10,
"ambient_sound": null,
"analysis_data": [
"<unknown>"
],
"llm": 577,
"voice_speed": 1,
"voice_temperature": 1,
"volume": 1,
"enable_backchannel": true,
"normalize_for_speech": false,
"enable_transcription_formatting": true,
"reminder_trigger_ms": 10000,
"reminder_max_count": 1,
"boosted_keywords": [
"<unknown>"
],
"ambient_sound_volume": 1,
"voicemail_detection_timeout_ms": 5000,
"begin_message_delay_ms": 0,
"updated_at": "2025-08-26T11:41:37.296105Z",
"is_locked": false,
"calendar_id": null,
"inbound_appoitment": false,
"ring_duration_sec": 30,
"stt_mode": "fast",
"backchannel_words": null,
"backchannel_frequency": 0.8,
"call_scheduling": false,
"agent_crm_type": null,
"voicemail_option": {
"action": {
"type": "hangup"
}
},
"agent_type": "legacy",
"responsiveness": 1,
"pronunciation_dictionary": null,
"vocab_specialization": "general",
"user_dtmf_options": {},
"denoising_mode": "noise-cancellation",
"allow_user_dtmf": true,
"llm_detail": {
"llm_id": "llm_b47e623ae3d8110e6a05241a9799",
"model": null,
"s2s_model": "gpt-4o-mini-realtime"
},
"is_active": false
}
]
}{
"success": true,
"message": "<string>",
"data": {}
}⌘I
