BettorToken API.
A read-only data API exposing investor-specific NAV, position, and transaction data to verified partners. Designed for portfolio aggregation tools, family-office reporting platforms, and CPA/tax-prep integrations. Not a public API — credentials are issued on a per-relationship basis under NDA.
OAuth 2.0 with scoped credentials.
Partners receive a client_id and client_secret after partnership agreement execution. Investor-level access requires the investor to authorize the partner via OAuth flow within the BettorToken portal — read-only scopes only.
Read-only data access.
/v1/nav
Returns current and historical SPLT NAV. Updated daily at 09:00 ET. Historical range up to fiscal-year-1 inception (April 2025).
{
"current_nav": 1.0352,
"previous_nav": 1.0331,
"currency": "USD",
"as_of": "2026-04-24T09:00:00-04:00",
"fiscal_year": 2,
"fiscal_day": 23,
"annual_differential_ytd": 0.0352
}
/v1/investor/positions
Returns the authenticated investor's current FYN and SPLT positions. Includes principal, accrued yield (FYN), current valuation (SPLT), and maturity dates.
{
"investor_id": "inv_4f9a2c8b...",
"positions": [
{
"instrument": "FYN",
"principal_usd": 250000,
"issue_date": "2025-09-15",
"maturity_date": "2026-09-15",
"coupon_rate": 0.15,
"accrued_yield_usd": 22397.26
},
{
"instrument": "SPLT",
"tokens_held": 250000,
"current_nav": 1.0352,
"current_value_usd": 258800.00,
"fiscal_year": 2,
"next_reset_date": "2027-04-30"
}
]
}
/v1/investor/transactions
Returns historical transactions: subscriptions, distributions, redemptions, NAV resets. Supports ?from=YYYY-MM-DD&to=YYYY-MM-DD query parameters.
{
"transactions": [
{
"id": "tx_8e2d1a4f...",
"type": "subscription",
"instrument": "SPLT",
"amount_usd": 250000,
"tokens": 250000,
"settled_at": "2025-09-15T13:42:08Z"
},
{
"id": "tx_3c7b9e0a...",
"type": "annual_reset",
"instrument": "SPLT",
"annual_differential": 0.7650,
"reset_at": "2026-04-30T09:00:00-04:00"
}
],
"next_cursor": null
}
/v1/investor/tax-forms
Lists available tax forms (1099-INT for FYN, K-1 for SPLT participation entities). Returns metadata; document-level access requires investor-delegated permission to the partner application.
{
"tax_forms": [
{
"tax_year": 2025,
"form_type": "1099-INT",
"instrument": "FYN",
"issued_at": "2026-01-31",
"download_url": "https://api.bettortoken.com/v1/secure/forms/..."
}
]
}
Reasonable, by design.
- 120 req/min per partner credential — read endpoints
- 10 req/min per partner credential — token issuance/refresh
- 429 response with
Retry-Afterheader on exceedance - Custom limits available for high-volume partners by request
What you'd expect, plus what you wouldn't.
- TLS 1.3 only — no fallback
- Tokens scoped to investor-delegated permissions
- No write endpoints in v1 — read-only by design
- All access logged; investors can revoke partner authorization at any time from the portal
- Annual third-party penetration testing
Want API access?
Credentials are issued to verified partners — portfolio aggregators, family-office reporting platforms, CPA/tax-prep tools. Reach out and we'll walk through partnership requirements and the credential issuance process.