Token Production
Upstream capacity
One API. Every model.
Reach many models and providers through one OpenAI-compatible API. RunToken routes, proxies, meters, prices and settles every request for you.
curl https://api.ontosphere.ai/v1/chat/completions \
-H Authorization: Bearer rt-...
\
-H Content-Type: application/json
\
-d '{
"model": "openai/gpt-4o",
"messages": [{
"role": "user",
"content": "Hello, RunToken"
}],
"stream": true
}'
END-TO-END PIPELINE
Every token is produced and moved through a process you can see, control and audit.
Upstream capacity
Pick the deployment
Translate the protocol
One model catalog
Referrals and commission
Billing and payout
BUILT FOR SCALE
Integrate once and reach a catalog that spans vendors. Your application code does not change when a provider does.
Send each request to a deployment that is enabled, priced and available — cheapest, fastest or balanced.
Token usage and cost are recorded as they happen, and a prepaid balance keeps spending where you put it.
Input price, output price and platform markup live in one place, each with the period it applies to.
Referral attribution, accrued commission and payouts are built in, so channel partners grow with you.
Keep the SDK and the request shape you already use, streaming included. Migrating costs you a base URL.
QUICK START
Every public endpoint lives under /v1. The API base is https://api.ontosphere.ai/v1. Create an API key and call it with curl or the OpenAI SDK.
curl https://api.ontosphere.ai/v1/chat/completions \
-H "Authorization: Bearer rt-..."
\
-H "Content-Type: application/json"
\
-d '{"model":"openai/gpt-4o",
"messages":[{"role":"user","content":"Hello"}]}'
curl https://api.ontosphere.ai/v1/models \
-H "Authorization: Bearer rt-..."