> ## 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.

# Plans & Pricing

> Eden AI charges no markup on provider pricing. You pay exactly what the underlying provider charges, plus a 5.

export const TechArticleSchema = ({title, description, path, articleSection, about, proficiencyLevel = "Beginner", dependencies, keywords = [], datePublished, dateModified, image, inLanguage = "en"}) => {
  const baseUrl = "https://www.edenai.co/docs";
  const canonicalUrl = `${baseUrl}/${path}`.replace(/\/+$/, "");
  const ogParams = new URLSearchParams({
    division: articleSection || "",
    title: title || "",
    description: description || ""
  });
  const resolvedImage = image || `https://edenai.mintlify.app/_mintlify/api/og?${ogParams.toString()}`;
  const data = {
    "@context": "https://schema.org",
    "@type": "TechArticle",
    "@id": `${canonicalUrl}#techarticle`,
    mainEntityOfPage: {
      "@type": "WebPage",
      "@id": canonicalUrl
    },
    headline: title,
    name: title,
    description: description,
    url: canonicalUrl,
    inLanguage: inLanguage,
    isPartOf: {
      "@type": "WebSite",
      name: "Eden AI Documentation",
      url: baseUrl
    },
    author: [{
      "@type": "Organization",
      name: "Eden AI",
      url: "https://www.edenai.co/"
    }],
    publisher: {
      "@type": "Organization",
      name: "Eden AI",
      url: "https://www.edenai.co/",
      logo: {
        "@type": "ImageObject",
        url: "https://www.edenai.co/assets/logo.png"
      }
    }
  };
  if (articleSection) data.articleSection = articleSection;
  if (about) data.about = {
    "@type": "Thing",
    name: about
  };
  if (proficiencyLevel) data.proficiencyLevel = proficiencyLevel;
  if (dependencies) data.dependencies = dependencies;
  if (keywords && keywords.length) data.keywords = keywords;
  if (datePublished) data.datePublished = datePublished;
  if (dateModified) data.dateModified = dateModified;
  data.image = Array.isArray(resolvedImage) ? resolvedImage : [resolvedImage];
  const json = JSON.stringify(data);
  const schemaId = `techarticle-${canonicalUrl}`;
  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, schemaId]);
  return null;
};

<TechArticleSchema title={"Plans & Pricing"} description={"Eden AI charges no markup on provider pricing. You pay exactly what the underlying provider charges, plus a 5."} path="v3/overview/plans-prices" articleSection="Overview" about={"AI Gateway"} proficiencyLevel="Beginner" keywords={["Eden AI", "AI API", "AI gateway", "multi-provider"]} datePublished="2026-05-06T00:00:00Z" dateModified="2026-05-07T00:00:00Z" />

Eden AI charges **no markup on provider pricing**. You pay exactly what the underlying provider charges, plus a **5.5% platform fee** applied at checkout. Provider prices are updated automatically so you always get the current rate.

Every API response includes the exact cost in USD:

```json theme={null}
{
  "status": "success",
  "cost": 0.0015,
  "output": { ... }
}
```

## Plans Comparison

| Feature                            |      Self-serve AI API     | Advanced AI Platform |
| ---------------------------------- | :------------------------: | :------------------: |
| **Pricing**                        |        Pay as you go       |        Custom        |
| Platform fee                       |            5.5%            |        Custom        |
| No markup on provider pricing      |             Yes            |          Yes         |
| Access to hundreds of AI models    |             Yes            |          Yes         |
| Unified API & billing              |             Yes            |          Yes         |
| Cost & performance monitoring      |             Yes            |          Yes         |
| Multiple API keys                  |             Yes            |          Yes         |
| Auto-refill credits                |             Yes            |          Yes         |
| Unlimited seats                    |             Yes            |          Yes         |
| Chat support (48h working days)    |             Yes            |          Yes         |
| Rate limit                         | 10 reqs/sec (+ on request) |    Custom (higher)   |
| Bulk discounts                     |             --             |          Yes         |
| Private deployments                |             --             |          Yes         |
| Custom latency & cost optimization |             --             |          Yes         |
| Dedicated support & SLA            |             --             |          Yes         |
| Professional services              |             --             |          Yes         |
| Custom billing                     |             --             |          Yes         |

## Self-serve AI API

The default plan -- pay as you go with no commitments. Includes:

* **No markup** -- you pay the exact provider price, plus a 5.5% platform fee
* **Access to hundreds of models** -- every supported AI model and provider
* **Unified API & billing** -- one integration, one invoice, one dashboard
* **Cost & performance monitoring** -- track spending, latency, and errors in real time
* **Multiple API keys** -- create separate keys for different projects or environments
* **Auto-refill credits** -- never run out of credits unexpectedly
* **Unlimited seats** -- invite your whole team at no extra cost
* **Chat support** -- responses within 48 working hours
* **Rate limit** -- 7 requests/second by default, upgradable to 15 req/sec on request

Payment is handled via Stripe. You purchase credits and they are consumed as you make API calls.

## Advanced AI Platform

For teams running AI at scale who need higher limits, dedicated infrastructure, and hands-on support. Everything in the Self-serve plan, plus:

* **Higher rate limits & bulk discounts** -- rate limit tailored to your workload, plus volume-based pricing
* **Private deployments** -- dedicated infrastructure for your workloads
* **Custom latency & cost optimization** -- tailored routing and performance tuning
* **Dedicated support & SLA** -- guaranteed response times and a direct support channel
* **Professional services** -- access to Eden AI engineers for implementation, architecture, and knowledge transfer
* **Custom billing** -- invoicing and payment terms tailored to your organization

<Info>
  Interested in the Advanced AI Platform? \[Contact sales throught the live chat] to discuss your needs.
</Info>

## Next Steps

<CardGroup cols={2}>
  <Card title="Buy Credits" icon="gear" href="/v3/general/buying-credits">
    Add credits to your account and configure auto-refill.
  </Card>

  <Card title="Monitor Usage" icon="gear" href="/v3/general/monitoring">
    Track your spending and usage in real time.
  </Card>
</CardGroup>
