Skip to main content
Use the /v3/llm/models endpoint to retrieve all LLM models available through Eden AI, along with their capabilities: PDF support, reasoning, web search, and tool calling.

Endpoint

GET /v3/llm/models

Example

curl https://api.edenai.run/v3/llm/models \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-4o",
      "object": "model",
      "owned_by": "openai",
      "capabilities": {
        "pdf": true,
        "reasoning": false,
        "web_search": true,
        "tool_calling": true
      }
    },
    {
      "id": "anthropic/claude-3-5-sonnet-latest",
      "object": "model",
      "owned_by": "anthropic",
      "capabilities": {
        "pdf": true,
        "reasoning": false,
        "web_search": false,
        "tool_calling": true
      }
    },
    {
      "id": "anthropic/claude-3-7-sonnet-latest",
      "object": "model",
      "owned_by": "anthropic",
      "capabilities": {
        "pdf": true,
        "reasoning": true,
        "web_search": false,
        "tool_calling": true
      }
    }
  ]
}
Each model id is used directly as the model parameter in your requests.

Capabilities

The capabilities object describes what each model supports:
FieldDescription
pdfModel can process PDF files as input
reasoningModel supports extended thinking / reasoning mode
web_searchModel can perform live web searches
tool_callingModel supports function/tool calling
Looking for OCR, image, or audio models? See List Expert Models for the full catalog of expert model features.