Lists the currently available models, and provides basic information about each one such as the owner and availability.
cURL
curl --request GET \ --url https://api.anyapi.ai/v1/models \ --header 'Authorization: Bearer <token>'
{ "object": "list", "data": [ { "id": "<string>", "object": "model", "created": 123, "owned_by": "<string>" } ] }
Bearer token authentication. Get your API key from the dashboard.
Successful response
The response is of type object.
object