Analysis status for a deal
curl --request GET \
--url https://api.originalis.ai/api/v1/deals/{deal_id}/analysis \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/deals/{deal_id}/analysis"
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/deals/{deal_id}/analysis', 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/deals/{deal_id}/analysis",
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/deals/{deal_id}/analysis"
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/deals/{deal_id}/analysis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/deals/{deal_id}/analysis")
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{
"deal_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"status": "running",
"progress": {
"percent": 0.4,
"stages": [
{
"name": "received",
"label": "Deck received",
"status": "done",
"done": null,
"total": null
},
{
"name": "extract",
"label": "Reading the deck",
"status": "done",
"done": 24,
"total": 24
},
{
"name": "founders",
"label": "Looking up the founders",
"status": "active",
"done": 1,
"total": 2
},
{
"name": "score",
"label": "Scoring",
"status": "pending",
"done": null,
"total": null
}
]
},
"result_url": 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": "Deal 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."
}public-deals-v1
Analysis status for a deal
Lifecycle of a submitted analysis: queued → running → succeeded/failed.
Poll with backoff (analysis takes minutes). succeeded means the
structured record is readable at result_url; failed is terminal —
resubmit or contact support with your X-Request-Id.
GET
/
api
/
v1
/
deals
/
{deal_id}
/
analysis
Analysis status for a deal
curl --request GET \
--url https://api.originalis.ai/api/v1/deals/{deal_id}/analysis \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/deals/{deal_id}/analysis"
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/deals/{deal_id}/analysis', 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/deals/{deal_id}/analysis",
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/deals/{deal_id}/analysis"
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/deals/{deal_id}/analysis")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/deals/{deal_id}/analysis")
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{
"deal_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"status": "running",
"progress": {
"percent": 0.4,
"stages": [
{
"name": "received",
"label": "Deck received",
"status": "done",
"done": null,
"total": null
},
{
"name": "extract",
"label": "Reading the deck",
"status": "done",
"done": 24,
"total": 24
},
{
"name": "founders",
"label": "Looking up the founders",
"status": "active",
"done": 1,
"total": 2
},
{
"name": "score",
"label": "Scoring",
"status": "pending",
"done": null,
"total": null
}
]
},
"result_url": 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": "Deal 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
ApiKeyBearerApiKeyHeader
An Originalis API key: Authorization: Bearer ak_...
Path Parameters
Response
Successful Response
Lifecycle of one submitted analysis (the shared action vocabulary).
'queued' | 'running' | 'succeeded' | 'failed'. Analysis takes minutes — poll with backoff, not a tight loop.
Stage-level progress while the analysis runs; null before the pipeline reports and after it finishes.
Show child attributes
Show child attributes
Set when status is 'succeeded': GET the deal record here.