Who knows this company or person
curl --request GET \
--url https://api.originalis.ai/api/v1/network/who-knows \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/who-knows"
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/who-knows', 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/who-knows",
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/who-knows"
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/who-knows")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/who-knows")
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{
"target": {
"domain": "acmerobotics.com",
"person": null
},
"scope": "org_shared",
"paths": [
{
"contact_id": "9f2c1b7a-4e11-4c2e-9b3a-1d5f6a7b8c9d",
"name": "Jane Doe",
"title": "CTO",
"email": "jane@acmerobotics.com",
"domain": "acmerobotics.com",
"warmth": 0.72,
"strength_score": 81,
"relationship": "strong",
"path_owner": "Mark Smith",
"owner_user_id": "user_2x9YbFq"
},
{
"contact_id": "b3d4e5f6-7a8b-4c9d-8e0f-1a2b3c4d5e6f",
"name": "Sam Lee",
"title": "VP Engineering",
"email": "sam@acmerobotics.com",
"domain": "acmerobotics.com",
"warmth": 0.31,
"strength_score": 44,
"relationship": "moderate",
"path_owner": "Priya Patel",
"owner_user_id": "user_7kQwLm2"
}
],
"unavailable_reason": null,
"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
Who knows this company or person
Rank the org’s warm paths to a target company or person.
GET
/
api
/
v1
/
network
/
who-knows
Who knows this company or person
curl --request GET \
--url https://api.originalis.ai/api/v1/network/who-knows \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/network/who-knows"
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/who-knows', 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/who-knows",
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/who-knows"
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/who-knows")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/network/who-knows")
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{
"target": {
"domain": "acmerobotics.com",
"person": null
},
"scope": "org_shared",
"paths": [
{
"contact_id": "9f2c1b7a-4e11-4c2e-9b3a-1d5f6a7b8c9d",
"name": "Jane Doe",
"title": "CTO",
"email": "jane@acmerobotics.com",
"domain": "acmerobotics.com",
"warmth": 0.72,
"strength_score": 81,
"relationship": "strong",
"path_owner": "Mark Smith",
"owner_user_id": "user_2x9YbFq"
},
{
"contact_id": "b3d4e5f6-7a8b-4c9d-8e0f-1a2b3c4d5e6f",
"name": "Sam Lee",
"title": "VP Engineering",
"email": "sam@acmerobotics.com",
"domain": "acmerobotics.com",
"warmth": 0.31,
"strength_score": 44,
"relationship": "moderate",
"path_owner": "Priya Patel",
"owner_user_id": "user_7kQwLm2"
}
],
"unavailable_reason": null,
"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
Target company domain, e.g. 'acme.com'.
Target person — a name or an email address.
Required range:
1 <= x <= 50Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Warm paths are pooled across org members who opted into network sharing; each path names its owner.
Allowed value:
"org_shared"Allowed value:
"no_warm_paths"