Skip to main content

Live catalog

The source of truth is the public catalog endpoint — no auth required:
curl https://gw.hyreagent.fun/api/inference/v1/models
Each entry includes the model id, tier, context length, live per-1M-token pricing (human-readable and micro-USD integers), whether it’s today’s free-tier model, and any active promo:
{
  "id": "zai-org/GLM-5",
  "name": "GLM 5",
  "tier": "STANDARD",
  "provider": "deepinfra",
  "context_length": 202752,
  "free_eligible": false,
  "pricing": {
    "input_per_1m": "$0.72",
    "output_per_1m": "$2.496",
    "input_per_1m_micro": 720000,
    "output_per_1m_micro": 2496000
  }
}
Prices are synced from upstream daily and can carry limited-time promo discounts, so always read live pricing from GET /models rather than hardcoding it. Docs tables below list the lineup, not prices.

Model lineup

Open-weight models

Served via DeepInfra. Tiers by retail output price: FLASH (under $0.60/M), STANDARD (under $3/M), PREMIUM ($3/M and above).
Model idNameTierContext
deepseek-ai/DeepSeek-V4-FlashDeepSeek V4 FlashFLASH1M
zai-org/GLM-4.7-FlashGLM 4.7 FlashFLASH200K
stepfun-ai/Step-3.5-FlashStep 3.5 FlashFLASH262K
google/gemma-4-31B-itGemma 4 31BFLASH262K
zai-org/GLM-5GLM 5STANDARD200K
Qwen/Qwen3.5-397B-A17BQwen 3.5 397BSTANDARD262K
meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8Llama 4 MaverickSTANDARD1M
MiniMaxAI/MiniMax-M2.7MiniMax M2.7STANDARD196K
nvidia/NVIDIA-Nemotron-3-Super-120B-A12BNemotron 3 Super 120BSTANDARD262K
deepseek-ai/DeepSeek-V4-ProDeepSeek V4 ProPREMIUM1M
moonshotai/Kimi-K2.6Kimi K2.6PREMIUM262K
moonshotai/Kimi-K2.7-CodeKimi K2.7PREMIUM262K
zai-org/GLM-5.2GLM 5.2PREMIUM1M

Frontier models

Proprietary frontier models served through HYRE’s compute partners — same endpoint, same key. All PREMIUM tier.
Model idNameContext
anthropic-claude-opus-4-8Claude Opus 4.81M
anthropic-claude-sonnet-4-6Claude Sonnet 4.61M
openai-gpt-55GPT-5.51M
openai-gpt-54GPT-5.41M
openai-gpt-54-miniGPT-5.4 Mini400K
google-gemini-3-1-pro-previewGemini 3.1 Pro1M
google-gemini-3-flash-previewGemini 3 Flash256K
x-ai-grok-4-3Grok 4.31M

How pricing works

  • Retail = live upstream price × 1.20. No hidden margins, no per-seat fees — you pay a flat 20% markup over the provider rate for routing, billing, and support.
  • Billing is per token (input and output priced separately), computed from the usage the upstream reports. Streaming responses bill from the final usage frame.
  • Metered keys reserve against your balance before the call and settle to actual usage after — you’re never charged more than the tokens you consumed.
  • Promos (limited-time discounts, holder free tiers) apply automatically and are visible in GET /models while active — no code changes needed on your side.

Free daily model

One FLASH/STANDARD model is hand-picked as free each UTC day (free_eligible: true in /models), with a per-user quota for eligible $HYRE holders. Treat it as a bonus, not capacity to build against.