Token云桥 - Unified LLM Gateway

One API for multiple model providers. Unified interface, smart routing, cost tracking, and enterprise security make AI app development simpler and faster.

Core Capabilities

Unified API Access

One OpenAI-compatible API for multiple LLM providers. No need to learn different SDKs; switch models by changing one parameter.

Cost Tracking and Control

Track token usage and cost for every call in real time. Set budget caps and rate limits to avoid surprise bills.

Smart Model Routing

Automatically choose the lowest-cost, lowest-latency, or highest-quality model. Fail over to backups when needed to keep traffic flowing.

Enterprise Security and Compliance

API key management, SSO, RBAC, content guardrails, and audit logs for enterprise security needs.

Quick Start

Copy this curl example and call the Token云桥 OpenAI-compatible API directly

cURL
curl -X POST https://api.shanhu-ai.cn/v1/chat/completions \
  -H "Authorization: Bearer sk-YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-2.0-flash",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }'