> ## Documentation Index
> Fetch the complete documentation index at: https://www.edenai.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Eden AI Documentation

> One API. 500+ AI models. Use any LLM or AI feature with fallback, routing, and cost tracking built in.

export const SiteSchema = () => {
  const data = {
    "@context": "https://schema.org",
    "@graph": [{
      "@type": "Organization",
      "@id": "https://www.edenai.co/#organization",
      name: "Eden AI",
      url: "https://www.edenai.co/",
      logo: {
        "@type": "ImageObject",
        url: "https://www.edenai.co/assets/logo.png"
      },
      sameAs: ["https://github.com/edenai", "https://www.linkedin.com/company/edenai", "https://discord.gg/VYwTbMQc8u", "https://www.youtube.com/@edenai2254"]
    }, {
      "@type": "WebSite",
      "@id": "https://www.edenai.co/docs#website",
      name: "Eden AI Documentation",
      url: "https://www.edenai.co/docs",
      publisher: {
        "@id": "https://www.edenai.co/#organization"
      },
      inLanguage: "en"
    }]
  };
  const json = JSON.stringify(data);
  const schemaId = "site-schema-graph";
  React.useEffect(() => {
    if (typeof document === "undefined") return;
    document.querySelectorAll(`script[data-schema-id="${schemaId}"]`).forEach(n => n.remove());
    const script = document.createElement("script");
    script.type = "application/ld+json";
    script.dataset.schemaId = schemaId;
    script.textContent = json;
    document.head.appendChild(script);
    return () => script.remove();
  }, [json]);
  return null;
};

<SiteSchema />

<CardGroup cols={3}>
  <Card title="500+ AI Models" icon="layer-group">
    GPT-4o, Claude, Gemini, Mistral, and hundreds more all from a single endpoint.
  </Card>

  <Card title="OpenAI-Compatible API" icon="plug">
    Drop-in replacement. Change the base URL, keep your existing code.
  </Card>

  <Card title="Built-in Reliability" icon="shield-check">
    Fallback, smart routing, and cost tracking out of the box.
  </Card>
</CardGroup>

<br />

<br />

<br />

<CardGroup cols={2}>
  <Card title="Quick Start" icon="bolt" href="/v3/quickstart/first-llm-call">
    Make your first API call in minutes and start building with 500+ models.
  </Card>

  <Card title="Overview" icon="map" href="/v3/overview/ai-gateway">
    Understand the V3 architecture, endpoints, and core concepts.
  </Card>

  <Card title="LLMs" icon="brain" href="/v3/llms/chat-completions">
    OpenAI-compatible chat completions with smart routing and streaming.
  </Card>

  <Card title="Expert Models" icon="microchip" href="/v3/expert-models/features/text/ai-detection">
    OCR, image processing, text analysis, translation, and audio features.
  </Card>
</CardGroup>

<br />

<br />

<br />

<br />

<Note>If you were a user before 2026/01/05, you still have access to the previous version: [https://old-app.edenai.run/](https://old-app.edenai.run/). We'll continue supporting the old version until the end of 2026. If you're looking for the documentation, you can find it [here](https://old-docs.edenai.co)</Note>
