Skip to main content
GET
/
v1
/
openai
/
models
Models
import requests

url = "https://api.example.com/v1/openai/models"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "data": [
    {
      "id": "<string>",
      "object": "model",
      "created": 123,
      "owned_by": "vlm-run"
    }
  ],
  "object": "list"
}
Our VLM Agents are fully compatible with the OpenAI API. Notably, our API also supports a whole range of features with multi-modal data types that OpenAI currently does not support. Our OpenAI-Compatible endpoint is available at https://agent.vlm.run/v1/openai.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

data
ChatModel · object[]
required
object
string
default:list