API Reference
List Models
List available VLM Run Gateway models and their capabilities
GET
Authentication is optional. Anonymous and authenticated callers share the
same rate limits as chat completions. See
Authentication for tier details.
For availability status and use-case guidance, see Models.
Model fields
VLM Run Gateway model entries extend the OpenAI list-models shape with these fields:| Field | Description |
|---|---|
id | Preferred public model id (use this in POST /chat/completions). |
aliases | All accepted request ids, including short and Hugging Face forms. |
methods | Operations supported via the method request field. |
default_method | Applied when method is omitted. |
extra_body_help | Example method / method_params payloads. |
capabilities | Input limits and accepted content part types. |
task | chat, embed, or transcribe (non-chat models use other endpoints). |
The OpenAI Python SDK may not surface VLM Run Gateway-specific fields like
capabilities or methods on the typed Model object. Parse the raw
response or use cURL when you need the full catalog metadata.Related
Models
Full catalog with availability status and use-case guidance.
Chat Completions
Send inference requests using model ids from this endpoint.