Inference
Models
Discover the model IDs and live availability currently admitted for inference.
SDK 0.1.0Private preview
List live availability
GET /models returns the current model catalog in an OpenAI-compatible list. This endpoint is public. Availability is runtime state: use only IDs whose status is ready, and check again after a capacity or provider error.
curl --fail-with-body "$OX_VISION_API_BASE_URL/models" \
--header "Accept: application/json"
{
"object": "list",
"data": [{
"id": "Qwen/Qwen3-VL-30B-A3B-Instruct",
"object": "model",
"owned_by": "hallikar",
"status": "ready"
}]
}
Treat the catalog as admission state
A model appearing in repository configuration or a model card does not prove it is currently admitted. The live catalog is authoritative for request selection. A later request can still fail because availability changes between discovery and inference, so handle 429, 502, 503, and 504 explicitly.