One API. Every model.

统一的 LLM Token
网关与市场

通过一个 OpenAI 兼容 API,连接多个模型与 Provider。RunToken 为每次请求完成智能路由、代理、计量、定价与结算。

OpenAI CompatibleStreaming SSEPrepaid Billing
request.sh
curl https://runtoken.runsphere.ai/v1/chat/completions \
  -H Authorization: Bearer rt-... \
  -H Content-Type: application/json \
  -d '{
    "model": "openai/gpt-4o-mini",
    "messages": [{
      "role": "user",
      "content": "Hello, RunToken"
    }],
    "stream": true
  }'
200 routed · metered · streaming

END-TO-END PIPELINE

从算力到结算,一条完整链路

每个 Token 都经过透明、可控且可审计的生产与流转过程。

01

Token Production

Token 生产

02

Routing

智能路由

03

Proxy

协议代理

04

Aggregation

Provider / 模型聚合

05

Reseller

经销商 / 分佣

06

Settlement

计费与结算

BUILT FOR SCALE

专注产品,不再拼接基础设施

01

统一 API

一次集成,即可访问跨厂商模型目录;应用代码无需随 Provider 改动。

02

多 Provider 路由

按 cheapest、fastest 或 balanced 策略,为请求选择合适的可用部署。

03

计量与预付费额度

实时记录 Token 用量和成本,以预付额度控制支出并避免意外账单。

04

定价与加价

集中管理输入、输出价格和平台加价,定价生效周期清晰可追溯。

05

经销商与分佣

内置推荐归因、佣金累计和结算能力,帮助渠道伙伴共同增长。

06

OpenAI 兼容 + SSE

沿用熟悉的 SDK 与请求格式,支持流式响应,迁移成本更低。

QUICK START

几分钟完成首次调用

所有公共 API 均位于 /v1 下。创建 API Key 后,可直接使用 curl 或 OpenAI SDK。

查看完整 API Reference → Gateway health
Chat completionPOST
curl https://runtoken.runsphere.ai/v1/chat/completions \
  -H "Authorization: Bearer rt-..." \
  -H "Content-Type: application/json" \
  -d '{"model":"openai/gpt-4o-mini",
       "messages":[{"role":"user","content":"你好"}]}'
List modelsGET
curl https://runtoken.runsphere.ai/v1/models \
  -H "Authorization: Bearer rt-..."