List models
GET https://inference.inferel.ai/v1/modelsReturns the models currently servable on the platform in the OpenAI list format. The catalog changes as providers and capacity are added, so query this endpoint rather than hardcoding model lists — a model appears here only when it has at least one healthy serving endpoint.
curl https://inference.inferel.ai/v1/models \ -H "Authorization: Bearer $INFEREL_API_KEY"{ "object": "list", "data": [ { "id": "anthropic/claude-sonnet-4.6", "object": "model", "owned_by": "inference" }, { "id": "openai/gpt-5.4-mini", "object": "model", "owned_by": "inference" }, { "id": "deepseek-ai/DeepSeek-V3.2", "object": "model", "owned_by": "inference" }, { "id": "Qwen/Qwen3.6-Plus", "object": "model", "owned_by": "inference" } ]}Model IDs are generally namespaced as provider/model-name
(e.g. anthropic/claude-opus-4.8, google/gemini-3.5-flash,
moonshotai/Kimi-K2.6). Use the id value verbatim as the model field in inference
requests.
Per-model pricing is shown in the console — see Models & pricing.