List all available models
curl --request GET \ --url https://api.search1api.com/v1/models \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "name": "<string>", "created": 123, "description": "<string>", "context_length": 123, "max_completion_tokens": 123 } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved models list
The response is of type object.
object