Quant Dashboard for Traders, MCP for Agents.
Introduction
Every gated Orakll request authenticates with a personal access token, passed in the Authorization header with the Bearer prefix.
Tokens are issued from your account and are premium-gated — you mint them after subscribing.
Include your token in the Authorization header with the Bearer prefix on every request:
Authorization: Bearer ppc_pat_…The format is ppc_pat_ followed by 43 base64url characters (51 characters in total). Tokens are user-scoped and inherit your tier.
The same authenticated call — fetching the latest feed — in three clients:
curl -H "Authorization: Bearer ppc_pat_…" \
"https://orakll.com/api/v1/feed?limit=20"ORAKLL_TOKEN rather than hard-coding it.export ORAKLL_TOKEN="ppc_pat_…"Manage tokens at /account/tokens: revoke a token to kill it immediately, and generate a replacement.