LP mark history
curl --request GET \
--url https://api.originalis.ai/api/v1/funds/marks \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/funds/marks"
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/funds/marks', 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/funds/marks",
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/funds/marks"
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/funds/marks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/funds/marks")
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",
"series": [
{
"commitment_id": "2b3c4d5e-6f7a-4b8c-9d0e-1f2a3b4c5d6e",
"points": [
{
"as_of_date": "2025-12-31",
"nav": 9000000,
"called_capital": 8000000,
"distributed_capital": 500000,
"tvpi": 1.19,
"source": "statement"
},
{
"as_of_date": "2026-06-30",
"nav": 11000000,
"called_capital": 9000000,
"distributed_capital": 1700000,
"tvpi": 1.41,
"source": "statement"
}
],
"has_trace": true
}
],
"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": "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-funds-v1
LP mark history
Every commitment’s dated mark trace (NAV / called / distributed).
The momentum view behind the in-app sparklines: each point carries the
TVPI it supports (null when that point’s inputs are missing), and
has_trace is true only with two or more dated points — one point is
a level, not a movement.
GET
/
api
/
v1
/
funds
/
marks
LP mark history
curl --request GET \
--url https://api.originalis.ai/api/v1/funds/marks \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/funds/marks"
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/funds/marks', 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/funds/marks",
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/funds/marks"
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/funds/marks")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/funds/marks")
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",
"series": [
{
"commitment_id": "2b3c4d5e-6f7a-4b8c-9d0e-1f2a3b4c5d6e",
"points": [
{
"as_of_date": "2025-12-31",
"nav": 9000000,
"called_capital": 8000000,
"distributed_capital": 500000,
"tvpi": 1.19,
"source": "statement"
},
{
"as_of_date": "2026-06-30",
"nav": 11000000,
"called_capital": 9000000,
"distributed_capital": 1700000,
"tvpi": 1.41,
"source": "statement"
}
],
"has_trace": true
}
],
"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": "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_...