model.cards

Simulator v1

33K ctxTextFree

Released Jan 5, 2026 · 12B tokens this week · 1 provider

Overview

Our free house model. It returns deterministic synthetic completions so you can exercise the gateway end to end — auth, streaming, usage accounting — before connecting a provider key. Always available, and the only model anonymous visitors can call. It answers in prose and never calls tools, so requests carrying `tools` are refused here rather than answered blind.

programming

Providers

Reference data — not yet measured from live traffic

PROVIDERMAX OUTOUTPUT /MQUANT
model.cardsCheapest
33K4KFreeFree80ms500100.00%Full

Latency p50 reflects a provider’s API endpoint responsiveness — the round-trip to its API, not per-token inference time. These figures, with throughput and uptime, are reference data until the gateway aggregates its own traffic.

Price comparison

Blended $ per 1M tokens

Simulator v1Free
GPT-5.2$10.94

Blended rate per 1M tokens, weighted one part prompt to three parts completion — roughly the shape of a chat workload. Your mix will move the number.

Call it

OpenAI-compatible — swap the base URL and go

curl https://model.cards/api/v1/chat/completions \
  -H "Authorization: Bearer $MODELCARDS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "modelcards/simulator-v1",
    "messages": [
      { "role": "user", "content": "Summarize the tradeoffs of speculative decoding." }
    ]
  }'