Going-stale relationships
curl --request GET \
--url https://api.originalis.ai/api/v1/network/signals/going-stale \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/signals/going-stale"
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/signals/going-stale', 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/signals/going-stale",
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/signals/going-stale"
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/signals/going-stale")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/signals/going-stale")
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",
"signals": [
{
"contact_id": "9f2c1b7a-4e11-4c2e-9b3a-1d5f6a7b8c9d",
"name": "Jane Doe",
"days_since_last_touch": 92,
"effective_cadence_days": 60,
"source": "declared"
},
{
"contact_id": "d1e2f3a4-5b6c-4d7e-8f9a-0b1c2d3e4f5a",
"name": "Chris Alvarez",
"days_since_last_touch": 45,
"effective_cadence_days": 30,
"source": "learned"
}
],
"total": 7,
"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
Going-stale relationships
Relationships whose days-since-last-touch exceed their cadence.
Mirrors the in-app going-stale surface: effective cadence = declared (user-set) when present, else the nightly learned cadence; snoozed rows are excluded; ordered by relative overdue. Scoped to the key’s user.
GET
/
api
/
v1
/
network
/
signals
/
going-stale
Going-stale relationships
curl --request GET \
--url https://api.originalis.ai/api/v1/network/signals/going-stale \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/signals/going-stale"
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/signals/going-stale', 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/signals/going-stale",
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/signals/going-stale"
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/signals/going-stale")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/signals/going-stale")
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",
"signals": [
{
"contact_id": "9f2c1b7a-4e11-4c2e-9b3a-1d5f6a7b8c9d",
"name": "Jane Doe",
"days_since_last_touch": 92,
"effective_cadence_days": 60,
"source": "declared"
},
{
"contact_id": "d1e2f3a4-5b6c-4d7e-8f9a-0b1c2d3e4f5a",
"name": "Chris Alvarez",
"days_since_last_touch": 45,
"effective_cadence_days": 30,
"source": "learned"
}
],
"total": 7,
"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
Required range:
1 <= x <= 200