Skip to main content
GET
/
models
List available models
curl --request GET \
  --url https://api.orcarouter.ai/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "gpt-4o",
      "object": "model",
      "created": 123,
      "owned_by": "openai",
      "supported_endpoint_types": [
        "chat.completion"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

OrcaRouter API keys look like sk-orca-.... Pass them in the Authorization: Bearer sk-orca-... header.

Response

200 - application/json

OK

object
enum<string>
Available options:
list
data
object[]