List deliveries
curl --request GET \
--url https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries', 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.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries",
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: Bearer <token>"
],
]);
$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.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"items": [
{
"attempts": 1,
"call_id": "9d2f7a3c-8e4b-4f1d-a6c7-2b3c4d5e6f70",
"created_at": "2026-09-10T14:04:36Z",
"delivered_at": "2026-09-10T14:04:36Z",
"endpoint_id": "b7e1c2d3-4f5a-4b6c-8d7e-9f0a1b2c3d4e",
"event": "call.ended",
"id": "6a0d5e4f-3c2b-4a19-8e7d-6c5b4a392817",
"last_status_code": 200,
"max_attempts": 8,
"status": "succeeded"
}
],
"page": 123,
"page_size": 123,
"total": 123
}{
"detail": "Invalid or expired API key"
}{
"detail": "Webhook endpoint not found."
}{
"detail": "status must be one of cancelled, failed, in_flight, pending, succeeded."
}Webhook Endpoints
List deliveries
The delivery log for one endpoint, newest first.
Payloads are omitted here; fetch a single delivery to see exactly what was
sent. A delivery with status: pending has a retry scheduled at
next_attempt_at; failed means every attempt was used.
GET
/
v1
/
webhook-endpoints
/
{endpoint_id}
/
deliveries
List deliveries
curl --request GET \
--url https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries', 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.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries",
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: Bearer <token>"
],
]);
$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.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.contourvoice.com/v1/webhook-endpoints/{endpoint_id}/deliveries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"items": [
{
"attempts": 1,
"call_id": "9d2f7a3c-8e4b-4f1d-a6c7-2b3c4d5e6f70",
"created_at": "2026-09-10T14:04:36Z",
"delivered_at": "2026-09-10T14:04:36Z",
"endpoint_id": "b7e1c2d3-4f5a-4b6c-8d7e-9f0a1b2c3d4e",
"event": "call.ended",
"id": "6a0d5e4f-3c2b-4a19-8e7d-6c5b4a392817",
"last_status_code": 200,
"max_attempts": 8,
"status": "succeeded"
}
],
"page": 123,
"page_size": 123,
"total": 123
}{
"detail": "Invalid or expired API key"
}{
"detail": "Webhook endpoint not found."
}{
"detail": "status must be one of cancelled, failed, in_flight, pending, succeeded."
}Authorizations
Your organization's API key (sk_cont_...), sent as Authorization: Bearer sk_cont_.... Keep it server-side.
Path Parameters
Query Parameters
Only deliveries for this call.
Only this event: call.started, call.ended, call.analyzed, or test.
Only this status: pending, in_flight, succeeded, failed, cancelled.
1-based page number.
Required range:
x >= 1Items per page, at most 200.
Required range:
1 <= x <= 200