models.fyi

The benchmark you read is not the model you run.

Leaderboards quote one number — max effort, official host, launch week. We measure every model at every reasoning-effort level, on every host that serves it, every week — then give you one API to call exactly the configuration you chose.

11 models · 24 serving configs · 8 benchmarks × 5 effort tiers · weekly re-runs

ProprietaryOpen weights
↑ better · ← cheaper

Cost per typical task, log scale (1K in + 600 out + reasoning tokens)

Three dimensions every other leaderboard flattens away

Analysis you can deploy

Every configuration on this site is a callable id on an OpenAI-compatible endpoint. Compare, pick the sweet spot, ship it — one key, unified billing, usage metered per model, host and effort tier.

  • drop-in: change base_url, keep your SDK
  • host pinning: model@host addresses one serving
  • effort routing: reasoning_effort is first-class
  • streaming SSE, hashed keys, per-tier metering
one request, fully specified
curl https://models.fyi/api/v1/chat/completions \
  -H "Authorization: Bearer $MFYI_API_KEY" \
  -d '{
    "model": "glm-5.2@fireworks",     ← the exact serving you compared
    "reasoning_effort": "medium",      ← the tier the sweet spot recommends
    "messages": [{"role":"user","content":"..."}]
  }'