Full call detail
curl --request GET \
--url https://api.pickupbell.com/locations/{locationId}/calls/{callId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.pickupbell.com/locations/{locationId}/calls/{callId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.pickupbell.com/locations/{locationId}/calls/{callId}', 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.pickupbell.com/locations/{locationId}/calls/{callId}",
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.pickupbell.com/locations/{locationId}/calls/{callId}"
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.pickupbell.com/locations/{locationId}/calls/{callId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pickupbell.com/locations/{locationId}/calls/{callId}")
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{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"direction": "inbound",
"caller_phone": "<string>",
"caller_name": "<string>",
"caller_address": "<string>",
"outcome": "booked",
"urgency_level": 2,
"is_emergency": true,
"is_returning_customer": true,
"started_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"duration_sec": 123,
"service_type": "<string>",
"issue_summary": "<string>",
"detected_intent": "<string>",
"estimated_value": 123,
"appointment_date": "2023-12-25",
"appointment_time": "<string>",
"disconnection_reason": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"recording_url": "<string>",
"public_log_url": "<string>",
"transcript": "<string>",
"transcript_turns": [
{
"role": "agent",
"content": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123
}
]
}
]
}
}API Reference · Calls & leads
Get call
Transcript and recording URL require the transcripts:read and recordings:read scopes respectively.
GET
/
locations
/
{locationId}
/
calls
/
{callId}
Full call detail
curl --request GET \
--url https://api.pickupbell.com/locations/{locationId}/calls/{callId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.pickupbell.com/locations/{locationId}/calls/{callId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.pickupbell.com/locations/{locationId}/calls/{callId}', 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.pickupbell.com/locations/{locationId}/calls/{callId}",
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.pickupbell.com/locations/{locationId}/calls/{callId}"
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.pickupbell.com/locations/{locationId}/calls/{callId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pickupbell.com/locations/{locationId}/calls/{callId}")
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{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"direction": "inbound",
"caller_phone": "<string>",
"caller_name": "<string>",
"caller_address": "<string>",
"outcome": "booked",
"urgency_level": 2,
"is_emergency": true,
"is_returning_customer": true,
"started_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z",
"duration_sec": 123,
"service_type": "<string>",
"issue_summary": "<string>",
"detected_intent": "<string>",
"estimated_value": 123,
"appointment_date": "2023-12-25",
"appointment_time": "<string>",
"disconnection_reason": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"recording_url": "<string>",
"public_log_url": "<string>",
"transcript": "<string>",
"transcript_turns": [
{
"role": "agent",
"content": "<string>",
"words": [
{
"word": "<string>",
"start": 123,
"end": 123
}
]
}
]
}
}Authorizations
Location-scoped API token from Settings → API & MCP.
Path Parameters
Location UUID or slug (e.g. premier-hvac).
Response
200 - application/json
Call
Light-weight call row returned by GET /calls. Transcript, recording, and cost/latency are omitted here — fetch GET /calls/{id} for those.
Show child attributes
Show child attributes