List portfolio holdings
curl --request GET \
--url https://api.originalis.ai/api/v1/portfolio/companies \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/portfolio/companies"
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/portfolio/companies', 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/portfolio/companies",
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/portfolio/companies"
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/portfolio/companies")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/portfolio/companies")
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",
"companies": [
{
"company_id": "3c4d5e6f-7a8b-4c9d-8e0f-1a2b3c4d5e6f",
"name": "Acme Robotics",
"website": "https://acmerobotics.com",
"sector": "Robotics",
"stage": "Series A",
"status": "active",
"fund_name": "Fund I",
"holding_type": "direct_company",
"investment_date": "2025-03-15",
"ownership_percentage": 8.5,
"invested": 2000000,
"current_valuation": 5000000,
"value_multiple": 2.5,
"position_count": 2,
"metrics": {
"arr": {
"value": 1200000,
"unit": "usd",
"currency": "USD",
"statement_date": "2026-06-30T00:00:00Z"
},
"monthly_burn": {
"value": 150000,
"unit": "usd",
"currency": "USD",
"statement_date": "2026-06-30T00:00:00Z"
},
"runway_months": {
"value": 14,
"unit": "months",
"currency": null,
"statement_date": "2026-06-30T00:00:00Z"
}
}
},
{
"company_id": "6f7a8b9c-0d1e-4f2a-8b3c-4d5e6f7a8b9c",
"name": "Quietloop",
"website": "https://quietloop.example",
"sector": "Developer Tools",
"stage": "Seed",
"status": "active",
"fund_name": "Fund I",
"holding_type": "direct_company",
"investment_date": "2024-11-01",
"ownership_percentage": null,
"invested": null,
"current_valuation": null,
"value_multiple": null,
"position_count": 0,
"metrics": {}
}
],
"total": 23,
"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."
}public-portfolio-v1
List portfolio holdings
List the org’s portfolio holdings with economics and latest metrics.
Each row carries ledger-derived economics (invested, current valuation, multiple — null when the ledger has no record, never a defaulted zero) and the latest actual for each core operating metric, dated by when it was measured.
GET
/
api
/
v1
/
portfolio
/
companies
List portfolio holdings
curl --request GET \
--url https://api.originalis.ai/api/v1/portfolio/companies \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/portfolio/companies"
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/portfolio/companies', 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/portfolio/companies",
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/portfolio/companies"
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/portfolio/companies")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/portfolio/companies")
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",
"companies": [
{
"company_id": "3c4d5e6f-7a8b-4c9d-8e0f-1a2b3c4d5e6f",
"name": "Acme Robotics",
"website": "https://acmerobotics.com",
"sector": "Robotics",
"stage": "Series A",
"status": "active",
"fund_name": "Fund I",
"holding_type": "direct_company",
"investment_date": "2025-03-15",
"ownership_percentage": 8.5,
"invested": 2000000,
"current_valuation": 5000000,
"value_multiple": 2.5,
"position_count": 2,
"metrics": {
"arr": {
"value": 1200000,
"unit": "usd",
"currency": "USD",
"statement_date": "2026-06-30T00:00:00Z"
},
"monthly_burn": {
"value": 150000,
"unit": "usd",
"currency": "USD",
"statement_date": "2026-06-30T00:00:00Z"
},
"runway_months": {
"value": 14,
"unit": "months",
"currency": null,
"statement_date": "2026-06-30T00:00:00Z"
}
}
},
{
"company_id": "6f7a8b9c-0d1e-4f2a-8b3c-4d5e6f7a8b9c",
"name": "Quietloop",
"website": "https://quietloop.example",
"sector": "Developer Tools",
"stage": "Seed",
"status": "active",
"fund_name": "Fund I",
"holding_type": "direct_company",
"investment_date": "2024-11-01",
"ownership_percentage": null,
"invested": null,
"current_valuation": null,
"value_multiple": null,
"position_count": 0,
"metrics": {}
}
],
"total": 23,
"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
ApiKeyBearerApiKeyHeader
An Originalis API key: Authorization: Bearer ak_...
Query Parameters
Filter by investment status, e.g. 'active'.
Filter to holdings in this fund (exact name).
Case-insensitive company-name search.
Required range:
1 <= x <= 200Required range:
x >= 0Response
Successful Response
Offset-paginated page of the org's portfolio.
Show child attributes
Show child attributes
Total matching holdings across all pages.
The full org portfolio book — not per-user.
Allowed value:
"org"