Skip to content
OpenRelay is in early access, and the /v1 API is stable. New capabilities ship in the changelog.
Catalog

List models in the OpenRelay catalog (OpenAI-compatible)

Returns the public model catalog. Free, not balance-gated. Models with status "available" can be used immediately in /v1/chat/completions; "request_access" models are listed for discovery but are not yet invocable.

GET
/v1/models
AuthorizationBearer <token>

OpenRelay API key. Send it as Authorization: Bearer vl_….

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/models"
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "object": "model",
      "created": 0,
      "owned_by": "string",
      "supported_apis": [
        "string"
      ],
      "modalities": {
        "input": [
          "string"
        ],
        "output": [
          "string"
        ]
      },
      "status": "available",
      "batch_eligible": true
    }
  ]
}
{
  "error": "string",
  "code": "string"
}

Command line

The orl CLI wraps this endpoint:

orl catalog model list