Skip to main content
Use the /v3/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/models

Example

curl https://api.edenai.run/v3/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.

Model aliases

Some models are available under a stable alias — a version-agnostic name that always points to the current release — alongside dated snapshot IDs:
  • Stable alias: deepseek/deepseek-chat, deepseek/deepseek-reasoner
  • Dated snapshot: anthropic/claude-opus-4-5-20251101
Use the stable alias when you want your integration to keep working as providers ship new versions. Pin a dated snapshot when you need a fixed, reproducible model. Either form works as the model parameter. The catalog lists both forms when a provider exposes them, so you may see a stable alias (e.g. anthropic/claude-opus-4-5) and one or more dated snapshots (e.g. anthropic/claude-opus-4-5-20251101) side by side. Use the stable alias to always get the latest version, or a dated snapshot to pin to a specific release.

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
You can also browse all features and providers visually in the Eden AI model catalog.
Need EU data residency? Hit https://api.eu.edenai.run/v3/models instead and the list is automatically filtered to EU-eligible models. See EU Endpoint.
Looking for OCR, image, or audio models? See List Expert Models for the full catalog of expert model features.