Retrieve all provider endpoints available for a specific model. Use this endpoint to inspect per-provider pricing, context length, quantization, and capability support.Documentation Index
Fetch the complete documentation index at: https://docs.arouter.ai/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Path Parameters
| Parameter | Description |
|---|---|
author | Model author (e.g. openai, anthropic, google) |
slug | Model slug (e.g. gpt-5.4, claude-sonnet-4.6) |
Example Request
Example Response
Response Fields
| Field | Type | Description |
|---|---|---|
provider_id | string | Provider ID for use in routing |
provider_name | string | Human-readable provider name |
model | string | Full model ID |
context_length | integer | Maximum input context in tokens |
max_completion_tokens | integer | Maximum output tokens |
pricing.prompt | number | Cost per prompt token in USD |
pricing.completion | number | Cost per completion token in USD |
quantization | string | Weight quantization: fp32, fp16, bf16, fp8, int8, int4 |
is_zdr | boolean | Whether this endpoint supports Zero Data Retention |
supported_parameters | string[] | Parameters this endpoint supports |
Notes
- Use provider IDs from this endpoint in
provider.order,provider.only, andprovider.ignore - Pricing is per token (not per 1k tokens)
- See Provider Routing for routing by endpoint capability