LLMoxy continuously aggregates 40+ model providers including OpenAI, Claude, Gemini, Azure, and AWS Bedrock. Available models are adjusted as upstreams change. Use the results returned by the API or console model list as the source of truth, and do not hardcode a snapshot of the model list into your code.
List Available Models
curl https://llmoxy.com/v1/models \
-H "Authorization: Bearer <LLMOXY_API_KEY>"
This endpoint only returns models that the current key is authorized to call. If you set an allowed model list for the key in the console, models outside the list will not appear.
View a Single Model
curl https://llmoxy.com/v1/models/gpt-4o-mini \
-H "Authorization: Bearer <LLMOXY_API_KEY>"
Gemini-Style Model List
curl https://llmoxy.com/v1beta/models \
-H "x-goog-api-key: <LLMOXY_API_KEY>"
OpenAI-style Gemini clients can also access:
curl https://llmoxy.com/v1beta/openai/models \
-H "Authorization: Bearer <LLMOXY_API_KEY>"
Model IDs
Use the IDs returned by GET /v1/models directly. The same model ID may map to multiple upstream providers behind the scenes, and LLMoxy will pick a healthy provider to send the request.
If the request returns model not found or no available route:
- Confirm the model ID spelling and case match
GET /v1/models. - Confirm your key is allowed to use this model in the console.
- Refresh the console model list; the model may have been temporarily removed by the upstream.
- If the issue persists, contact us through the support channel in the console.
Pricing
Prices and charges are based on the console Pricing page. The price of the same model may change due to upstream adjustments or promotions. Do not infer current prices from documentation or old conversations.
