curl --request GET \
--url https://api.originalis.ai/api/v1/founders/analyses/{analysis_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/founders/analyses/{analysis_id}"
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/founders/analyses/{analysis_id}', 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/founders/analyses/{analysis_id}",
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/founders/analyses/{analysis_id}"
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/founders/analyses/{analysis_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/founders/analyses/{analysis_id}")
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{
"analysis_id": "d4e5f6a7-8b9c-4d0e-8f1a-2b3c4d5e6f7a",
"status": "succeeded",
"founder_name": "Ada Founder",
"analysis_mode": "linkedin_only",
"overall_score": 82,
"assessment_confidence": "high",
"executive_summary": "Second-time operator with deep warehouse-automation domain expertise; strong technical bench, unproven at enterprise sales.",
"ori_pov": "The rare robotics founder who has already lived one full hardware-margin cycle — bet on the learning rate.",
"metrics": [
{
"metric_name": "technical_depth",
"score": 9
},
{
"metric_name": "market_insight",
"score": 8
},
{
"metric_name": "execution_track_record",
"score": 7.5
}
],
"key_strengths": [
"Shipped and scaled a robotics fleet to 40 sites at prior company",
"Published research in motion planning"
],
"areas_for_improvement": [
"No prior enterprise sales ownership"
],
"risk_factors": [
"Single technical co-founder dependency"
],
"venture_fit": {
"ideal_company_type": "Deep-tech hardware with recurring software revenue",
"ideal_sectors": [
"Robotics",
"Logistics"
],
"team_gaps": [
"GTM lead"
]
},
"research": [
{
"category": "news",
"results": [
{
"url": "https://news.example/acme-series-a",
"title": "Acme Robotics raises Series A",
"snippet": "Warehouse-automation startup Acme Robotics…"
}
],
"result_count": 1
}
],
"resolved_linkedin_url": "https://linkedin.com/in/adafounder-example",
"created_at": "2026-09-07T13:40:00Z",
"updated_at": "2026-09-07T13:52: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": "Analysis not found"
}{
"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."
}Founder analysis status and result
One founder analysis: lifecycle plus the assessment when finished.
running analyses return identity fields with null scores; on
succeeded the full allowlisted assessment is present, including
per-category research evidence.
curl --request GET \
--url https://api.originalis.ai/api/v1/founders/analyses/{analysis_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/founders/analyses/{analysis_id}"
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/founders/analyses/{analysis_id}', 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/founders/analyses/{analysis_id}",
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/founders/analyses/{analysis_id}"
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/founders/analyses/{analysis_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/founders/analyses/{analysis_id}")
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{
"analysis_id": "d4e5f6a7-8b9c-4d0e-8f1a-2b3c4d5e6f7a",
"status": "succeeded",
"founder_name": "Ada Founder",
"analysis_mode": "linkedin_only",
"overall_score": 82,
"assessment_confidence": "high",
"executive_summary": "Second-time operator with deep warehouse-automation domain expertise; strong technical bench, unproven at enterprise sales.",
"ori_pov": "The rare robotics founder who has already lived one full hardware-margin cycle — bet on the learning rate.",
"metrics": [
{
"metric_name": "technical_depth",
"score": 9
},
{
"metric_name": "market_insight",
"score": 8
},
{
"metric_name": "execution_track_record",
"score": 7.5
}
],
"key_strengths": [
"Shipped and scaled a robotics fleet to 40 sites at prior company",
"Published research in motion planning"
],
"areas_for_improvement": [
"No prior enterprise sales ownership"
],
"risk_factors": [
"Single technical co-founder dependency"
],
"venture_fit": {
"ideal_company_type": "Deep-tech hardware with recurring software revenue",
"ideal_sectors": [
"Robotics",
"Logistics"
],
"team_gaps": [
"GTM lead"
]
},
"research": [
{
"category": "news",
"results": [
{
"url": "https://news.example/acme-series-a",
"title": "Acme Robotics raises Series A",
"snippet": "Warehouse-automation startup Acme Robotics…"
}
],
"result_count": 1
}
],
"resolved_linkedin_url": "https://linkedin.com/in/adafounder-example",
"created_at": "2026-09-07T13:40:00Z",
"updated_at": "2026-09-07T13:52: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": "Analysis not found"
}{
"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
An Originalis API key: Authorization: Bearer ak_...
Path Parameters
Query Parameters
'default' returns names + scores per metric; 'full' adds each metric's confidence, reasoning, and missing_info.
default, full Response
Successful Response
One founder analysis: lifecycle plus the result when finished.
queued, running, succeeded, failed Live stage while the analysis runs; null before the pipeline reports (progress state expires ~10 minutes after a run ends).
Show child attributes
Show child attributes
'linkedin_only', 'github_only', or 'full'.
Overall assessment score; null until finished.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Web-research evidence by category; populated on success.
Show child attributes
Show child attributes