Get one account's score detail
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/accounts/score \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/accounts/score"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbit.devotel.io/api/v1/cdp/accounts/score', 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.orbit.devotel.io/api/v1/cdp/accounts/score",
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.orbit.devotel.io/api/v1/cdp/accounts/score"
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.orbit.devotel.io/api/v1/cdp/accounts/score")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/accounts/score")
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": {
"account": "Globex Corporation",
"contact_count": 42,
"firmographic_band": "mid",
"firmographic_domain": "globex.com",
"firmographic_identity_source": "enrichment",
"firmographic_enriched": true,
"account_churn_risk": 0.31,
"max_contact_churn_risk": 0.78,
"expansion_propensity": 0.64,
"intent_score": 0.55,
"total_value_cents": 4820000,
"health_segment": "expansion",
"members_returned": 2,
"members": [
{
"contact_id": "contact_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"display_name": "Jane Doe",
"churn_risk": 0.72,
"intent_score": 0.4,
"propensity_score": 0.66,
"ltv_estimate_cents": 250000,
"segment_label": "champion",
"lifecycle_stage": "customer"
}
]
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-07T12:00:00.000Z"
}
}CDP
Get one account's score detail
Returns the account-level score roll-up for a single company (named by the account query parameter) plus the per-contact member breakdown — each member’s contact_id, individual churn / intent / propensity scores, LTV, and lifecycle stage — so a CSM can see WHICH contacts drive the account’s churn risk. Use it to drill into one account from the ranked accounts/scores list. Returns 404 when no contact carries that company name. Owner / admin / developer with the contacts:read scope only.
GET
/
api
/
v1
/
cdp
/
accounts
/
score
Get one account's score detail
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/accounts/score \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbit.devotel.io/api/v1/cdp/accounts/score"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbit.devotel.io/api/v1/cdp/accounts/score', 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.orbit.devotel.io/api/v1/cdp/accounts/score",
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.orbit.devotel.io/api/v1/cdp/accounts/score"
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.orbit.devotel.io/api/v1/cdp/accounts/score")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/accounts/score")
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": {
"account": "Globex Corporation",
"contact_count": 42,
"firmographic_band": "mid",
"firmographic_domain": "globex.com",
"firmographic_identity_source": "enrichment",
"firmographic_enriched": true,
"account_churn_risk": 0.31,
"max_contact_churn_risk": 0.78,
"expansion_propensity": 0.64,
"intent_score": 0.55,
"total_value_cents": 4820000,
"health_segment": "expansion",
"members_returned": 2,
"members": [
{
"contact_id": "contact_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"display_name": "Jane Doe",
"churn_risk": 0.72,
"intent_score": 0.4,
"propensity_score": 0.66,
"ltv_estimate_cents": 250000,
"segment_label": "champion",
"lifecycle_stage": "customer"
}
]
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-07T12:00:00.000Z"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Response
200 - application/json
The account roll-up for the requested company plus its per-contact member breakdown (capped by members_limit).
The response is of type object.
⌘I