Reach fan-out candidates
curl --request GET \
--url https://api.originalis.ai/api/v1/network/reach/candidates \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/reach/candidates"
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/reach/candidates', 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/reach/candidates",
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/reach/candidates"
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/reach/candidates")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/reach/candidates")
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",
"candidates": [
{
"candidate_id": "5e6f7a8b-9c0d-4e1f-8a2b-3c4d5e6f7a8b",
"full_name": "Ada Founder",
"linkedin_url": "https://linkedin.com/in/adafounder-example",
"headline": "Building warehouse robotics",
"current_title": "CEO",
"current_company": "Acme Robotics",
"location": "Brooklyn, NY",
"candidate_type": "founder",
"fit_score": 0.83,
"fit_reasons": [
"Former colleague of two of your anchors",
"Sector overlap: robotics, logistics"
],
"path_quality": "proxy_first_degree",
"is_proxy_first_degree": true,
"status": "new",
"first_seen_at": "2026-08-28T09:12:00Z",
"updated_at": "2026-09-01T22:40:00Z"
}
],
"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
Reach fan-out candidates
Precomputed reach fan-out candidates for the key’s user.
Serves the persisted output of background fan-out runs (proxy first degree through the user’s anchors, portfolio hops, LLM typing). Pure table read — a run is never triggered by this endpoint.
GET
/
api
/
v1
/
network
/
reach
/
candidates
Reach fan-out candidates
curl --request GET \
--url https://api.originalis.ai/api/v1/network/reach/candidates \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/reach/candidates"
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/reach/candidates', 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/reach/candidates",
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/reach/candidates"
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/reach/candidates")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/reach/candidates")
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",
"candidates": [
{
"candidate_id": "5e6f7a8b-9c0d-4e1f-8a2b-3c4d5e6f7a8b",
"full_name": "Ada Founder",
"linkedin_url": "https://linkedin.com/in/adafounder-example",
"headline": "Building warehouse robotics",
"current_title": "CEO",
"current_company": "Acme Robotics",
"location": "Brooklyn, NY",
"candidate_type": "founder",
"fit_score": 0.83,
"fit_reasons": [
"Former colleague of two of your anchors",
"Sector overlap: robotics, logistics"
],
"path_quality": "proxy_first_degree",
"is_proxy_first_degree": true,
"status": "new",
"first_seen_at": "2026-08-28T09:12:00Z",
"updated_at": "2026-09-01T22:40:00Z"
}
],
"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