GET
/
v1
/
models
curl --request GET \
  --url https://api.vlm.run/v1/models \
  --header 'Authorization: Bearer <token>'
[
  {
    "domain": "<string>",
    "model": "vlm-1"
  }
]

Get a list of schemas currently supported by the API. These are available for use with the generate endpoint.

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
domain
string
required

The domain to get the info for.

model
string
default:vlm-1

The model identifier.

Allowed value: "vlm-1"