Export contacts with warmth
curl --request GET \
--url https://api.originalis.ai/api/v1/network/contacts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/contacts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.originalis.ai/api/v1/network/contacts', 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.originalis.ai/api/v1/network/contacts",
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.originalis.ai/api/v1/network/contacts"
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.originalis.ai/api/v1/network/contacts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/contacts")
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{
"scope": "key_user",
"contacts": [
{
"contact_id": "9f2c1b7a-4e11-4c2e-9b3a-1d5f6a7b8c9d",
"name": "Jane Doe",
"email": "jane@acmerobotics.com",
"title": "CTO",
"domain": "acmerobotics.com",
"linkedin_url": "https://linkedin.com/in/janedoe-example",
"location": "New York, NY",
"warmth": 0.72,
"strength_score": 81,
"relationship": "strong",
"path_owner": "Mark Smith",
"owner_user_id": "user_2x9YbFq",
"unavailable_reason": null
},
{
"contact_id": "c7d8e9f0-1a2b-4c3d-9e4f-5a6b7c8d9e0f",
"name": "Alex Kim",
"email": "alex@futuremail.example",
"title": null,
"domain": "futuremail.example",
"linkedin_url": null,
"location": null,
"warmth": null,
"strength_score": null,
"relationship": null,
"path_owner": null,
"owner_user_id": null,
"unavailable_reason": "no_relationship_data"
}
],
"next_cursor": "c7d8e9f0-1a2b-4c3d-9e4f-5a6b7c8d9e0f",
"as_of": "2026-09-02T14:00:00Z"
}{
"detail": "Invalid or revoked API key."
}{
"detail": "This API key's user does not belong to an organization. Ask your firm admin to add the user to your Originalis org."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "Daily request limit reached (5,000 requests per key). The limit resets at UTC midnight."
}{
"detail": "API key verification is temporarily unavailable. Retry shortly."
}public-network-v1
Export contacts with warmth
Keyset-paginated listing of the key user’s contact graph.
Each row carries the org’s best warmth edge (share_network-gated, owner attributed) so a single paged export is enough to sync warmth into a CRM or warehouse.
GET
/
api
/
v1
/
network
/
contacts
Export contacts with warmth
curl --request GET \
--url https://api.originalis.ai/api/v1/network/contacts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/contacts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.originalis.ai/api/v1/network/contacts', 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.originalis.ai/api/v1/network/contacts",
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.originalis.ai/api/v1/network/contacts"
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.originalis.ai/api/v1/network/contacts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/contacts")
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{
"scope": "key_user",
"contacts": [
{
"contact_id": "9f2c1b7a-4e11-4c2e-9b3a-1d5f6a7b8c9d",
"name": "Jane Doe",
"email": "jane@acmerobotics.com",
"title": "CTO",
"domain": "acmerobotics.com",
"linkedin_url": "https://linkedin.com/in/janedoe-example",
"location": "New York, NY",
"warmth": 0.72,
"strength_score": 81,
"relationship": "strong",
"path_owner": "Mark Smith",
"owner_user_id": "user_2x9YbFq",
"unavailable_reason": null
},
{
"contact_id": "c7d8e9f0-1a2b-4c3d-9e4f-5a6b7c8d9e0f",
"name": "Alex Kim",
"email": "alex@futuremail.example",
"title": null,
"domain": "futuremail.example",
"linkedin_url": null,
"location": null,
"warmth": null,
"strength_score": null,
"relationship": null,
"path_owner": null,
"owner_user_id": null,
"unavailable_reason": "no_relationship_data"
}
],
"next_cursor": "c7d8e9f0-1a2b-4c3d-9e4f-5a6b7c8d9e0f",
"as_of": "2026-09-02T14:00:00Z"
}{
"detail": "Invalid or revoked API key."
}{
"detail": "This API key's user does not belong to an organization. Ask your firm admin to add the user to your Originalis org."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "Daily request limit reached (5,000 requests per key). The limit resets at UTC midnight."
}{
"detail": "API key verification is temporarily unavailable. Retry shortly."
}Authorizations
ApiKeyBearerApiKeyHeader
An Originalis API key: Authorization: Bearer ak_...
Query Parameters
Keyset cursor from the previous page.
Required range:
1 <= x <= 200Response
Successful Response
Show child attributes
Show child attributes
The listing is the key user's contact graph; warmth on each row pools org-shared edges and names the owner.
Allowed value:
"key_user"Pass back as ?cursor= for the next page; null = done.