curl --request GET \
--url https://api.originalis.ai/api/v1/deals/{deal_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/deals/{deal_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/deals/{deal_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/deals/{deal_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/deals/{deal_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/deals/{deal_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/deals/{deal_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{
"deal_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"kind": "company",
"company_name": "Acme Robotics",
"company_url": "https://acmerobotics.com",
"subtitle": "Autonomous picking for mid-size warehouses",
"deal_status": "diligence",
"stage": "Series A",
"sectors": [
"Robotics",
"Logistics"
],
"location": "Brooklyn, NY",
"year_founded": 2023,
"current_round": "Series A",
"current_raise": "$12M",
"last_round_amount": "$3.5M",
"overall_score": 78.5,
"founders": [
{
"name": "Ada Founder",
"role": "CEO",
"linkedin_url": "https://linkedin.com/in/adafounder-example"
},
{
"name": "Grace Builder",
"role": "CTO",
"linkedin_url": null
}
],
"in_progress": false,
"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."
}Get a deal record
Structured detail for one deal: company facts, round, team, score.
404 when the deal doesn’t exist, isn’t visible to the key’s user, or its analysis hasn’t produced a record yet.
curl --request GET \
--url https://api.originalis.ai/api/v1/deals/{deal_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/deals/{deal_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/deals/{deal_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/deals/{deal_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/deals/{deal_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/deals/{deal_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/deals/{deal_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{
"deal_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"kind": "company",
"company_name": "Acme Robotics",
"company_url": "https://acmerobotics.com",
"subtitle": "Autonomous picking for mid-size warehouses",
"deal_status": "diligence",
"stage": "Series A",
"sectors": [
"Robotics",
"Logistics"
],
"location": "Brooklyn, NY",
"year_founded": 2023,
"current_round": "Series A",
"current_raise": "$12M",
"last_round_amount": "$3.5M",
"overall_score": 78.5,
"founders": [
{
"name": "Ada Founder",
"role": "CEO",
"linkedin_url": "https://linkedin.com/in/adafounder-example"
},
{
"name": "Grace Builder",
"role": "CTO",
"linkedin_url": null
}
],
"in_progress": false,
"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
An Originalis API key: Authorization: Bearer ak_...
Path Parameters
Query Parameters
'default' returns the structured record; 'full' adds the per-section analysis (scores + summaries) in analysis.
default, full Response
Successful Response
Structured detail for a single deal.
company, fund Kanban status (canonical spelling).
Funding stage, e.g. 'Seed', 'Series A'.
Round currently being raised, e.g. 'Series A'.
Amount being raised, e.g. '$7.6M'.
Amount raised in the last completed round.
Originalis analysis score (0-100); null when not yet scored.
Show child attributes
Show child attributes
Per-section analysis (scores + summaries). Present only with ?view=full; sections the analysis hid are excluded.
Show child attributes
Show child attributes
True while deck analysis is still populating this deal — fields may be partial. Re-fetch later for the complete record.