Sync the pipeline into a warehouse
Page untilhas_more is false:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Copy-paste loops for the common integrations.
has_more is false:
OFFSET=0
while :; do
PAGE=$(curl -s -H "X-API-Key: $KEY" \
"https://api.originalis.ai/api/v1/deals?limit=50&offset=$OFFSET")
echo "$PAGE" | jq -c '.deals[]' >> deals.ndjson
[ "$(echo "$PAGE" | jq '.has_more')" = "true" ] || break
OFFSET=$((OFFSET + 50))
done
curl -s -X POST -H "X-API-Key: $KEY" -H "Content-Type: application/json" \
-d '{"contacts": ["jane@acme.com", "sam@beta.io"]}' \
"https://api.originalis.ai/api/v1/network/warmth/lookup" | jq '.results'
curl -s -H "X-API-Key: $KEY" "https://api.originalis.ai/api/v1/funds/positions" | jq '.totals'
curl -s -H "X-API-Key: $KEY" "https://api.originalis.ai/api/v1/funds/cashflows" \
| jq '.cashflows[] | select(.cashflow_date >= "2026-07-01")'
curl -s -H "X-API-Key: $KEY" \
"https://api.originalis.ai/api/v1/network/signals/going-stale?limit=10" \
| jq -r '.signals[] | "\(.name): \(.days_since_last_touch)d since last touch"'