Hyperscaled API
Build a prop-trading business on our infrastructure
The Hyperscaled API gives you everything behind a modern prop firm — identity verification, payments, funded accounts, live trading, and payouts — behind one multi-tenant REST API. This is the documentation for the same endpoints that power the Vanta reference app you're looking at.
Every call is authenticated, multi-tenant, and isolated to your app. You bring the UI; we run the regulated, capital, and market plumbing.
Get your credentials
Each integrating app is a tenant with its own OAuth client_id and client_secret. Request access and, once approved, you'll get a one-time link to retrieve them:
- Submit the Request access form (company, contact, use case).
- We provision your network identity and approve the request — approval is manual.
- You receive an email with a one-time link to reveal your
client_idandclient_secret(the secret is shown once).
Running locally? You can self-approve from the admin console — see the Quickstart. Confirm an app's client_id and scopes anytime via GET /v2/apps/me; the secret is rotate-only and never readable again.
Make your first request
# 1. Exchange your app credentials for an access token
curl -X POST http://localhost:8000/v2/oauth/token \
-H "Content-Type: application/json" \
-d '{"grant_type":"client_credentials","client_id":"hsc_...","client_secret":"hsk_...","scope":"api"}'
# 2. Use the token to call the API
curl http://localhost:8000/v2/auth/me \
-H "Authorization: Bearer <access_token>" \
-H "X-Session-Token: <end_user_session>"Two layers of auth
X-Session-Token. See Authentication.Explore the flows
Quickstart
Get the API and this app running locally in ~10 minutes.
Authentication
OAuth client credentials for your app + per-user sessions.
Identity / KYC
Verify a trader's identity with Sumsub before they trade.
Checkout & accounts
Sell prop challenges with Stripe and provision accounts.
Trading
Submit orders, manage positions and poll the trading desk.
Payouts & Connect
Onboard payees via Stripe Connect and send earned profit.
API keys
Issue scoped programmatic credentials for your traders.
Webhooks
Receive real-time events: KYC, payments, payouts, trades.
Full API reference
Search every endpoint, copy cURL, and run reads live.