← All models
Infersia logo

Sports-1

infersia/sports-1

Infersia's proprietary sports grounding stack on a 320-billion-parameter sparse mixture-of-experts base — 18B parameters active per token, which is why big-model quality prices this low. Live sports data the gateway fetches itself, mid-response: betting lines — moneyline, spread and totals — and player props (anytime and first touchdown scorer, passing, rushing and receiving yards, points, rebounds, assists, home runs, strikeouts, goals and more) from named bookmakers for every major sport (NFL, NBA, MLB, NHL, college, UFC, tennis, golf, cricket, AFL, NRL and soccer leagues worldwide), roster lookups for the US leagues, plus deep soccer coverage: fixture odds, league tables, fixtures and results, squads and transfers. Send an ordinary chat completion and grounding is automatic — no tool loop to implement, no data-provider key to hold. Prices are quoted from a named bookmaker in the format its market actually uses, never an average and never converted. Bring your own tools and they take precedence. 1M-token context window.

Get an API key

Endpoints

Each row is one provider serving these weights at one precision. Prices are per million tokens.

QuantisationContextMax outInputOutputCached in
Undisclosed1024K32K$0.55$0.85$0.07

Prefix caching is enabled and the discount is passed through. If your agent replays the same system prompt each iteration, the repeated portion bills at the cached rate.

Agent config

Paste this into your coding agent and it can configure itself. The timeout is derived from this variant's measured throughput, not a guess — a long generation that outlives a client's default ceiling is the most common way a working request looks broken.

# Infersia — infersia/sports-1
# Paste this to your agent. Values are measured, not aspirational.

provider:
  type: openai-compatible
  base_url: https://api.infersia.com/v1
  api_key: ${INFERSIA_API_KEY}   # from https://infersia.com/dashboard/keys
  model: infersia/sports-1

limits:
  max_input_tokens: 1048576      # hard limit — over this returns HTTP 413
  max_output_tokens: 32768
  timeout_seconds: 600                  # no throughput measured yet; 600 is a safe default

features:
  streaming: true
  tools: true
  vision: true
  reasoning: true   # OFF by default; send chat_template_kwargs.enable_thinking=true to opt in
  prompt_caching: true   # automatic; reuse a stable prefix and it bills at the cache rate

pricing_usd_per_million_tokens:
  input: 0.55
  output: 0.85
  cached_input: 0.07

What Undisclosed means

This model is served on capacity we buy rather than hardware we operate, so we cannot verify the precision it is served at. We would rather say that than print a figure we are guessing at.

Call it

curlbash
curl https://api.infersia.com/v1/chat/completions \
  -H "Authorization: Bearer $INFERSIA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "infersia/sports-1",
    "messages": [{"role": "user", "content": "Hello"}],
    "stream": true
  }'

Pin a provider with infersia/sports-1@infersia, or take the cheapest with the bare id. Add :free for the rate-limited free tier where one exists.