Free / Budget Mainstream models Proxy required

Chutes Review: Pricing & Comparison

Low-latency hosting of SOTA open-source models (Kimi/GLM/DeepSeek/Qwen etc.); pay-as-you-go + subscriptions; unified OpenAI-compatible API

Last verified: 2026-08-15 · Visit official site →

Multi-Model A/B Testing: Why You Need a Unified Gateway

A common development scenario: you’re building an AI application and aren’t sure whether DeepSeek, Qwen, or GLM performs best. Registering three separate accounts, maintaining three sets of API keys, and writing three sets of error-handling logic — that process alone is a waste of time.

Chutes (chutes.ai) is positioned to solve exactly this: a single interface for accessing multiple open-source models, billed at a low rate based on actual usage.

How to Connect

Chutes is fully compatible with the OpenAI API format, so switching cost is close to zero:

from openai import OpenAI

client = OpenAI(
    api_key="your Chutes API key",
    base_url="https://llm.chutes.ai/v1"
)

# Test different models' output on the same task
task = "Write a business email apologizing to a customer, sincere in tone but not overly self-critical"

for model in ["deepseek-v4-flash", "qwen3", "glm-5.1"]:
    try:
        response = client.chat.completions.create(
            model=model,
            messages=[{"role": "user", "content": task}],
            max_tokens=300
        )
        print(f"\n--- {model} ---")
        print(response.choices[0].message.content)
    except Exception as e:
        print(f"{model} error: {e}")

This code structure makes multi-model comparison testing very simple — swap out the model parameter to switch providers, with no need to maintain multiple client-initialization setups.

How Global Routing Works

Chutes has deployed inference nodes across multiple regions. When you send a request, the system automatically picks a node based on:

  • Geographic proximity: reducing physical transmission latency
  • Node load: avoiding overloaded nodes
  • Model availability: making sure the target model is available at that node

For servers based in the US/Europe, Chutes’s nearest-node routing can meaningfully reduce latency. Mainland China users need a proxy, which reduces the latency advantage somewhat.

Well-Suited Use Cases

  • Model selection: quickly comparing output quality across different models without maintaining multiple accounts
  • Cost optimization: once your primary open-source model is settled, continuing to use it below mainstream-hosting prices
  • Multi-model fallback: automatically switching to a backup model when the primary model errors out

If you need more complete observability (request logs, cost tracking, caching), Portkey or Helicone offer more comprehensive features. If mainland direct connect is your main concern, LaoZhang API or AiHubMix is a better fit.

Information verified 2026-08-15. Model support and pricing follow Chutes’s official site at time of writing.

  • RunAPI: high-quality, high-speed operation, mainland direct connect, a choice for developers chasing speed
  • TomCat API: a stable domestic relay, low-latency direct connect, pay-as-you-go for mainstream models
  • Inworld Router: 200+ models at 0% markup, deeply optimized for gaming and entertainment AI scenarios, smart request-complexity-based routing
  • ZHTec API: an exchange rate of ¥0.5-0.6/USD, VIP and standard tiers, an ultra-low-price relay

Quick facts

Pricing modelPer-token: Pay As You Go with no monthly fee; Plus $10/mo (6% off PAYG), Pro $20/mo (10% off), Enterprise custom; open-source prices below mainstream platforms (DeepSeek V4 Flash $0.14/M in)
Model coverageOpen-source focused: DeepSeek/Qwen/GLM/Kimi/MiniMax/Gemma/Mistral etc. SOTA open LLMs + image/video/speech; unified OpenAI-compatible API
Latency / SLAGlobally distributed routing, inference at the nearest node; no public SLA
Mainland direct connectProxy required
Best forDevelopers
Referral programNo public affiliate program found so far.

Pros

  • Competitive pricing: open-source model pricing sits below mainstream hosting platforms, well suited to cost-sensitive, high-volume use cases
  • Unified multi-model interface: access DeepSeek/Qwen/GLM/Kimi and other open-source models with a single API key, convenient for multi-model comparison experiments
  • Global routing: automatically picks the nearest inference node, reducing cross-continent latency

Cons

  • A relatively new platform — long-term stability and continued operations remain to be seen
  • Requires a proxy for mainland China access
  • Observability and monitoring features are relatively basic

Compare more AI API relays

See the full comparison board — filter by price tier, model coverage, and mainland direct-connect status.

Back to the comparison board →