curl --request GET \
--url https://api.originalis.ai/api/v1/deals \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/deals"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/deals")
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": "org_workspace",
"deals": [
{
"deal_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"kind": "company",
"company_name": "Acme Robotics",
"subtitle": "Autonomous picking for mid-size warehouses",
"sectors": [
"Robotics",
"Logistics"
],
"deal_status": "diligence",
"stage": "Series A",
"overall_score": 78.5,
"is_archived": false,
"created_at": "2026-08-12T15:30:00Z",
"updated_at": "2026-09-01T18:05:00Z"
},
{
"deal_id": "1f2e3d4c-5b6a-4978-8765-4321fedcba98",
"kind": "fund",
"company_name": "Beta Growth I",
"subtitle": "Growth-stage B2B software, fund II of an emerging manager",
"sectors": [
"B2B SaaS"
],
"deal_status": "screening",
"stage": null,
"overall_score": null,
"is_archived": false,
"created_at": "2026-08-30T10:00:00Z",
"updated_at": null
}
],
"total": 34,
"limit": 50,
"offset": 0,
"has_more": 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": [
{
"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."
}List deals
List the org’s deal pipeline, newest activity first.
The active workspace cohort visible to the key’s user — in-flight
analyses included (their scores arrive as they finish). Offset-
paginated with a stable ordering and a total, so a full sweep into
a CRM or warehouse is offset += limit until has_more is false.
curl --request GET \
--url https://api.originalis.ai/api/v1/deals \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/deals"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/deals")
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": "org_workspace",
"deals": [
{
"deal_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"kind": "company",
"company_name": "Acme Robotics",
"subtitle": "Autonomous picking for mid-size warehouses",
"sectors": [
"Robotics",
"Logistics"
],
"deal_status": "diligence",
"stage": "Series A",
"overall_score": 78.5,
"is_archived": false,
"created_at": "2026-08-12T15:30:00Z",
"updated_at": "2026-09-01T18:05:00Z"
},
{
"deal_id": "1f2e3d4c-5b6a-4978-8765-4321fedcba98",
"kind": "fund",
"company_name": "Beta Growth I",
"subtitle": "Growth-stage B2B software, fund II of an emerging manager",
"sectors": [
"B2B SaaS"
],
"deal_status": "screening",
"stage": null,
"overall_score": null,
"is_archived": false,
"created_at": "2026-08-30T10:00:00Z",
"updated_at": null
}
],
"total": 34,
"limit": 50,
"offset": 0,
"has_more": 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": [
{
"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_...
Query Parameters
Filter to these deal statuses (repeatable: ?status=diligence&status=term-sheet). Omit for all.
Filter to these funding stages (repeatable), e.g. 'Series A'.
Filter to 'company' or 'fund' deals.
company, fund Case-insensitive company-name search.
1 <= x <= 50x >= 0Response
Successful Response
Offset-paginated page of the org's deal workspace.
Show child attributes
Show child attributes
Total matching deals across all pages.
True when offset + len(deals) < total; page with ?offset=.
Deals shared into the key user's org workspace, plus deals shared directly with the key's user — i.e. what that member sees in the in-app pipeline.
"org_workspace"