List models
Models & pricing
List models
List model IDs and availability in an OpenAI-compatible shape. No auth required.
Use the id value as the model field in inference requests.
GET
List models
What’s in the response
- Each entry’s
idis what you pass asmodelon/chat/completions. Use it verbatim — IDs are case-sensitive. statusis the only mutable field worth checking:ready— at least one healthy replica is serving. Use it.unavailable— model is not currently serving. Don’t use; retry later or fall back to another model.
- A model that’s
readyhere can still return503on/chat/completionsif its replica falls over between calls. Always handle503with a retry or a fallback to anotherreadymodel.