Skip to main content
GET
/
api
/
models
Get all models
curl --request GET \
  --url https://api.example.com/api/models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "metadata": {
        "numParameters": 123,
        "trainedFor": "<string>",
        "description": "<string>",
        "quantizations": [
          {
            "modelFileName": "<string>",
            "method": "<string>",
            "sizeBytes": 123,
            "maxRamUsage": 123
          }
        ],
        "contextWindowSize": 123
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key here

Query Parameters

downloaded
boolean

When true, returns only models that have at least one file downloaded locally

Response

List of models retrieved successfully

data
object[]