curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/inline-scoreimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/inline-score"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/inline-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/inline-score",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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/inline-score"
req, _ := http.NewRequest("POST", url, nil)
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.orbit.devotel.io/api/v1/cdp/inline-score")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/inline-score")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"scored_at": "2026-08-20T12:00:00.000Z",
"cache": "miss",
"scores": {
"churn_risk": 0.71,
"conversion_intent": 0.34,
"ltv_cents": 21340
},
"models": [
{
"model": "churn_propensity",
"kind": "classification",
"status": "scored",
"metric": "churn_risk",
"value": 0.71
},
{
"model": "conversion_intent",
"kind": "classification",
"status": "scored",
"metric": "conversion_intent",
"value": 0.34
},
{
"model": "lifetime_value",
"kind": "regression",
"status": "scored",
"metric": "ltv_cents",
"value": 21340
}
],
"decision": {
"decision": "suppress",
"suppressed": true,
"downgrade_offer": null,
"fired_rule": {
"rule_id": "high-churn-suppress",
"metric": "churn_risk",
"operator": "gte",
"threshold": 0.7,
"action": "suppress",
"value": 0.71,
"reason": "matched"
},
"evaluations": [
{
"rule_id": "high-churn-suppress",
"metric": "churn_risk",
"operator": "gte",
"threshold": 0.7,
"action": "suppress",
"value": 0.71,
"matched": true,
"reason": "matched"
}
]
}
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-20T12:00:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "<string>",
"status": 429,
"retry_after": 2
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Score one contact synchronously and evaluate a send-time decisioning gate
Scores ONE contact synchronously against the trained CDP predictive models (churn propensity, conversion intent, predicted lifetime value) — the persisted contact_scores columns can be up to ~24h stale, so call this in the send path the moment a campaign or journey is about to message the recipient. Per-contact results are cached briefly so a burst pays the feature lookup once. Optionally pass uplift (against a past campaign’s control holdout) and gate — threshold rules over the live scores that return a deterministic send / downgrade / suppress verdict the caller’s send wiring enacts. This endpoint decides, it never dispatches. Owner / admin / developer with the contacts:read scope.
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/cdp/inline-scoreimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/inline-score"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/inline-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/inline-score",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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/inline-score"
req, _ := http.NewRequest("POST", url, nil)
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.orbit.devotel.io/api/v1/cdp/inline-score")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/inline-score")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"scored_at": "2026-08-20T12:00:00.000Z",
"cache": "miss",
"scores": {
"churn_risk": 0.71,
"conversion_intent": 0.34,
"ltv_cents": 21340
},
"models": [
{
"model": "churn_propensity",
"kind": "classification",
"status": "scored",
"metric": "churn_risk",
"value": 0.71
},
{
"model": "conversion_intent",
"kind": "classification",
"status": "scored",
"metric": "conversion_intent",
"value": 0.34
},
{
"model": "lifetime_value",
"kind": "regression",
"status": "scored",
"metric": "ltv_cents",
"value": 21340
}
],
"decision": {
"decision": "suppress",
"suppressed": true,
"downgrade_offer": null,
"fired_rule": {
"rule_id": "high-churn-suppress",
"metric": "churn_risk",
"operator": "gte",
"threshold": 0.7,
"action": "suppress",
"value": 0.71,
"reason": "matched"
},
"evaluations": [
{
"rule_id": "high-churn-suppress",
"metric": "churn_risk",
"operator": "gte",
"threshold": 0.7,
"action": "suppress",
"value": 0.71,
"matched": true,
"reason": "matched"
}
]
}
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-20T12:00:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "<string>",
"status": 429,
"retry_after": 2
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Response
The contact's live scores, the cache internals, and the gate verdict ({ decision, suppressed, fired_rule, evaluations } when gate rules were supplied; decision is null otherwise).
The contact's live scores, the cache internals, and the gate verdict ({ decision, suppressed, fired_rule, evaluations } when gate rules were supplied; decision is null otherwise).