List Models
GET /api/v1/modelsThe public model catalog. No authentication required. The catalog is the single
source of truth for the Pricing page and for what the gateway will accept
as a model value.
Request
This endpoint takes no query parameters and no request body.
Generated at build time from the API's OpenAPI document — the same schemas that validate requests, so this section cannot drift from the API.
Response
{
"data": [
{
"slug": "anthropic/claude-sonnet-4.5",
"name": "Claude Sonnet 4.5",
"context_length": 1000000,
"max_output_tokens": 64000,
"pricing": { "prompt": 3, "completion": 15, "cached_prompt": 0.3 },
"features": ["tools", "vision", "json_mode", "reasoning", "streaming", "prompt_caching"],
"datacenter_locations": ["us-east"],
"hugging_face_id": null
}
]
}200Response
The catalog.
dataobject[]requiredShow 13 nested fields
slugstringrequiredOpenRouter-style slug, e.g. deepseek/deepseek-v4-pro.
namestringrequiredproviderobjectrequiredCreator branding (avatar, title prefix, `by {creator}`).
Show 3 nested fields
slugstringrequiredCreator slug, e.g. deepseek.
namestringrequiredCreator display name, e.g. DeepSeek.
brand_colorstringBrand colour hex, e.g. #4D6BFE.
descriptionstringrequiredMarketing paragraph (2-line clamp on the list).
release_datestringrequiredISO release date YYYY-MM-DD ("" when unset).
context_lengthintegerrequiredmax_output_tokensintegerrequiredpricingobjectrequiredUSD per 1M tokens.
Show 3 nested fields
promptnumberrequiredcompletionnumberrequiredcached_promptnumberfeaturesstring[]requiredPossible values: tools vision json_mode reasoning streaming prompt_caching
datacenter_locationsstring[]requiredhugging_face_idstringbenchmarksobject[]requiredPublic benchmark scores (010-R11): primary (canonical) first, then extra; [] when none are cited (009-R44).
Show 6 nested fields
labelstringrequiredExact published benchmark name, e.g. GPQA Diamond.
scorenumberrequiredunitstringScore unit (default %).
Possible values: % elo pass@1
modestringOptional reasoning-mode qualifier, e.g. High.
source_urlstringrequiredCanonical source for the number.
tierstringrequiredPossible values: primary extra
weekly_token_volumeintegerDerived platform-wide 7-day token sum, injected from usage rollups (009-R44); omitted by the config reflection.
metaobjectDeployment capabilities (not per-model).
Show 1 nested field
image_generation_configuredbooleanrequiredWhether the chat `image` server tool has a real provider configured (009-R74).
Generated at build time from the API's OpenAPI document — the same schemas that validate requests, so this section cannot drift from the API.
Use slug as the model value in gateway requests — slugs are OpenRouter-identical.
Pricing figures are USD per 1M tokens; completion pricing includes reasoning tokens.
Example
curl https://api.hyperinfer.ai/api/v1/modelsPlayground
Runs without signing in — this endpoint is public.
GET /api/v1/modelscurl https://api.hyperinfer.ai/api/v1/models