Place an outbound call
curl --request POST \
--url https://api.verbose.cx/v1/calls \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"to": "+15551234567",
"voice_agent_id": "ag_1",
"from": "1a2b",
"variables": {
"first_name": "Jo"
}
}
'import requests
url = "https://api.verbose.cx/v1/calls"
payload = {
"to": "+15551234567",
"voice_agent_id": "ag_1",
"from": "1a2b",
"variables": { "first_name": "Jo" }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
to: '+15551234567',
voice_agent_id: 'ag_1',
from: '1a2b',
variables: {first_name: 'Jo'}
})
};
fetch('https://api.verbose.cx/v1/calls', 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.verbose.cx/v1/calls",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'to' => '+15551234567',
'voice_agent_id' => 'ag_1',
'from' => '1a2b',
'variables' => [
'first_name' => 'Jo'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.verbose.cx/v1/calls"
payload := strings.NewReader("{\n \"to\": \"+15551234567\",\n \"voice_agent_id\": \"ag_1\",\n \"from\": \"1a2b\",\n \"variables\": {\n \"first_name\": \"Jo\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.verbose.cx/v1/calls")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"to\": \"+15551234567\",\n \"voice_agent_id\": \"ag_1\",\n \"from\": \"1a2b\",\n \"variables\": {\n \"first_name\": \"Jo\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.verbose.cx/v1/calls")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"to\": \"+15551234567\",\n \"voice_agent_id\": \"ag_1\",\n \"from\": \"1a2b\",\n \"variables\": {\n \"first_name\": \"Jo\"\n }\n}"
response = http.request(request)
puts response.read_body{
"ok": true
}{
"ok": false,
"error": "list_id is required"
}Calls
Place an outbound call
Place one call with a voice agent (the voice analogue of sending an SMS). Honors DNC + opt-out. Voice must be enabled for your workspace.
POST
/
v1
/
calls
Place an outbound call
curl --request POST \
--url https://api.verbose.cx/v1/calls \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"to": "+15551234567",
"voice_agent_id": "ag_1",
"from": "1a2b",
"variables": {
"first_name": "Jo"
}
}
'import requests
url = "https://api.verbose.cx/v1/calls"
payload = {
"to": "+15551234567",
"voice_agent_id": "ag_1",
"from": "1a2b",
"variables": { "first_name": "Jo" }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
to: '+15551234567',
voice_agent_id: 'ag_1',
from: '1a2b',
variables: {first_name: 'Jo'}
})
};
fetch('https://api.verbose.cx/v1/calls', 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.verbose.cx/v1/calls",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'to' => '+15551234567',
'voice_agent_id' => 'ag_1',
'from' => '1a2b',
'variables' => [
'first_name' => 'Jo'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.verbose.cx/v1/calls"
payload := strings.NewReader("{\n \"to\": \"+15551234567\",\n \"voice_agent_id\": \"ag_1\",\n \"from\": \"1a2b\",\n \"variables\": {\n \"first_name\": \"Jo\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.verbose.cx/v1/calls")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"to\": \"+15551234567\",\n \"voice_agent_id\": \"ag_1\",\n \"from\": \"1a2b\",\n \"variables\": {\n \"first_name\": \"Jo\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.verbose.cx/v1/calls")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"to\": \"+15551234567\",\n \"voice_agent_id\": \"ag_1\",\n \"from\": \"1a2b\",\n \"variables\": {\n \"first_name\": \"Jo\"\n }\n}"
response = http.request(request)
puts response.read_body{
"ok": true
}{
"ok": false,
"error": "list_id is required"
}Authorizations
Your API key (as_live_…), created under Settings → API keys.
Body
application/json
Response
Success
Example:
true
Was this page helpful?
⌘I