Read a contact's stored AI traits without recomputing
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traitsimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traits"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traits', 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/contacts/{id}/ai-traits",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/contacts/{id}/ai-traits"
req, _ := http.NewRequest("GET", url, nil)
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/contacts/{id}/ai-traits")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traits")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"churn_risk_score": 0.71,
"predicted_ltv": 213.4,
"lifecycle_stage": "at_risk",
"next_best_action": "send_promo",
"ai_traits_computed_at": "2026-08-20T12:00:00.000Z",
"ai_traits_reasoning": "Engagement dropped over the last 30 days while support tickets rose.",
"ai_traits_input_features": {
"opened_events_30d": 4,
"logins_30d": 0
},
"ai_traits_model_version": "claude-sonnet-4",
"ai_traits_contested_at": null,
"ai_traits_contest_reason": null,
"derived_trait_tags": [
"price-shopper",
"churn-risk"
],
"derived_trait_tags_computed_at": "2026-08-20T12:00:00.000Z"
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2"
}
}{
"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>"
}
}CDP
Read a contact's stored AI traits without recomputing
Returns the most-recently-computed AI traits for the contact — churn risk score, predicted lifetime value, lifecycle stage, and next best action — plus the Art-22 reasoning fields, derived behavioural tags, and any contest mark. Null fields mean the contact has not been scored yet. The contact-detail panel calls this on mount; POST the refresh sibling to recompute. Owner / admin / developer.
GET
/
api
/
v1
/
cdp
/
contacts
/
{id}
/
ai-traits
Read a contact's stored AI traits without recomputing
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traitsimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traits"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traits', 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/contacts/{id}/ai-traits",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/contacts/{id}/ai-traits"
req, _ := http.NewRequest("GET", url, nil)
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/contacts/{id}/ai-traits")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/contacts/{id}/ai-traits")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"contact_id": "cnt_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"churn_risk_score": 0.71,
"predicted_ltv": 213.4,
"lifecycle_stage": "at_risk",
"next_best_action": "send_promo",
"ai_traits_computed_at": "2026-08-20T12:00:00.000Z",
"ai_traits_reasoning": "Engagement dropped over the last 30 days while support tickets rose.",
"ai_traits_input_features": {
"opened_events_30d": 4,
"logins_30d": 0
},
"ai_traits_model_version": "claude-sonnet-4",
"ai_traits_contested_at": null,
"ai_traits_contest_reason": null,
"derived_trait_tags": [
"price-shopper",
"churn-risk"
],
"derived_trait_tags_computed_at": "2026-08-20T12:00:00.000Z"
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2"
}
}{
"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>"
}
}Path Parameters
Response
contact_id plus the four AI trait columns, the Art-22 reasoning/input-features/model-version chain, the contest mark, and the derived behavioural tags.
contact_id plus the four AI trait columns, the Art-22 reasoning/input-features/model-version chain, the contest mark, and the derived behavioural tags.