GET
/
v1
/
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved models list
data
object[]