cURL
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 } ] }
Retrieve models information.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
The response is of type object.
object