Get an anonymous visitor's device/cookie identity graph
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graphimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graph"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graph', 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/profiles/by-anonymous-id/{anonymous_id}/device-graph",
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/profiles/by-anonymous-id/{anonymous_id}/device-graph"
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/profiles/by-anonymous-id/{anonymous_id}/device-graph")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graph")
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": {
"anonymous_id": "anon_9f2c1e4b",
"nodes": [
{
"id": "anonymous_id:anon_9f2c1e4b",
"kind": "anonymous_id",
"value": "anon_9f2c1e4b",
"is_seed": true,
"last_seen": "2026-08-19T12:00:00.000Z"
},
{
"id": "device_id:idfv_abc123",
"kind": "device_id",
"value": "idfv_abc123",
"is_seed": false,
"last_seen": "2026-08-19T12:00:00.000Z"
}
],
"edges": [
{
"from": "anonymous_id:anon_9f2c1e4b",
"to": "device_id:idfv_abc123",
"kind": "seen_on_device",
"last_seen": "2026-08-19T12:00:00.000Z"
}
],
"linked_anonymous_ids": [
"anon_2b7cbd10"
],
"stats": {
"device_count": 1,
"cookie_count": 0,
"linked_anonymous_id_count": 1
},
"truncated": false
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-19T12: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>"
}
}CDP
Get an anonymous visitor's device/cookie identity graph
Returns the device/cookie signals a given (pre-identify) anonymous_id has fired, plus every OTHER anonymous_id sharing one of those same device_id/cookie_id values in a bounded lookback window — the cross-device stitching graph for visitors who have never called identify/alias. Read-only; never merges or aliases anything. Scoped to profile reads (owner / admin / developer) with the contacts:read scope.
GET
/
api
/
v1
/
cdp
/
profiles
/
by-anonymous-id
/
{anonymous_id}
/
device-graph
Get an anonymous visitor's device/cookie identity graph
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graphimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graph"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graph', 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/profiles/by-anonymous-id/{anonymous_id}/device-graph",
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/profiles/by-anonymous-id/{anonymous_id}/device-graph"
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/profiles/by-anonymous-id/{anonymous_id}/device-graph")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/profiles/by-anonymous-id/{anonymous_id}/device-graph")
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": {
"anonymous_id": "anon_9f2c1e4b",
"nodes": [
{
"id": "anonymous_id:anon_9f2c1e4b",
"kind": "anonymous_id",
"value": "anon_9f2c1e4b",
"is_seed": true,
"last_seen": "2026-08-19T12:00:00.000Z"
},
{
"id": "device_id:idfv_abc123",
"kind": "device_id",
"value": "idfv_abc123",
"is_seed": false,
"last_seen": "2026-08-19T12:00:00.000Z"
}
],
"edges": [
{
"from": "anonymous_id:anon_9f2c1e4b",
"to": "device_id:idfv_abc123",
"kind": "seen_on_device",
"last_seen": "2026-08-19T12:00:00.000Z"
}
],
"linked_anonymous_ids": [
"anon_2b7cbd10"
],
"stats": {
"device_count": 1,
"cookie_count": 0,
"linked_anonymous_id_count": 1
},
"truncated": false
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-19T12: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>"
}
}Path Parameters
Query Parameters
How many days back to search for other anonymous_ids sharing a device/cookie signal (1-90, default 30). Out-of-range or non-numeric values clamp to the default rather than erroring.
Maximum string length:
10Response
Device/cookie identity graph for the anonymous_id.
Device/cookie identity graph for the anonymous_id.