GET
/
models
curl --request GET \
  --url https://api.horay.ai/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "meta-llama/Meta-Llama-3.1-8B-Instruct",
      "object": "model",
      "created": 0,
      "owned_by": "",
      "max_output_tokens": 4096,
      "context_length": 32768
    }
  ]
}

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
object
string
data
object[]