Skip to main content
GET
/
v1
/
llms
list llms
curl --request GET \
  --url https://api.anam.ai/v1/llms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "a7cf662c-2ace-4de1-a21e-ef0fbf144bb7",
      "displayName": "GPT-4o",
      "description": "OpenAI GPT-4o default configuration.",
      "llmFormat": "openai",
      "urls": [
        {
          "url": "https://api.openai.com/v1/chat/completions"
        }
      ],
      "modelName": "gpt-4o",
      "temperature": 0.7,
      "maxTokens": 1024,
      "deploymentName": null,
      "apiVersion": null,
      "metadata": {},
      "displayTags": [
        "openai"
      ],
      "isDefault": true,
      "isGlobal": true,
      "isZdr": false,
      "createdByOrganizationId": null,
      "createdAt": "2026-04-20T10:00:00.000Z",
      "updatedAt": null
    }
  ],
  "meta": {
    "total": 1,
    "lastPage": 1,
    "currentPage": 1,
    "perPage": 10,
    "prev": null,
    "next": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://anam.ai/docs/llms.txt

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

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Page number for pagination

perPage
integer

Number of items per page

Search term to filter LLMs

includeDefaults
boolean

Include default LLMs in the response

Response

Successfully retrieved LLMs

data
object[]
meta
object

Pagination metadata returned alongside the data array of every list endpoint.

Last modified on May 12, 2026