Skip to main content
GET
/
models
/
{model_id}
Get model details
curl --request GET \
  --url https://api.orcarouter.ai/v1/models/{model_id} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

model_id
string
required

Response

200 - application/json

OK

id
string
Example:

"gpt-4o"

object
enum<string>
Available options:
model
created
integer
owned_by
string
Example:

"openai"

supported_endpoint_types
string[]
Example:
["chat.completion"]