> ## Documentation Index
> Fetch the complete documentation index at: https://edenai-docs-github-copilot-integration.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Rate Limits

> Eden AI applies a per-account rate limit on requests to the API. The limit can be raised based on the volume and pattern of traffic you need to support.

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={"Rate Limits"} description={"Eden AI applies a per-account rate limit on requests to the API. The limit can be raised based on the volume and pattern of traffic you need to support."} path="v3/overview/rate-limits" 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 applies a per-account rate limit on requests to the API. The limit can be raised based on the volume and pattern of traffic you need to support.

## Default Rate Limit

Every account starts at **10 requests per second**. This applies to all endpoints under `https://api.edenai.run/v3/...` and is shared across your API keys.

<Note>
  In an organization, the owner's rate limit is the ceiling for all members, and the owner can cap individual members below it.
</Note>

## Self-serve AI API

If 10 req/sec is not enough for your workload, the limit can be **adjusted on request**. Reach out via the live chat with a short description of your use case and expected throughput, and we'll raise it for your account.

See [Plans & Pricing](/v3/overview/plans-prices) for the full list of what's included in the Self-serve plan.

## Advanced AI Platform

The Advanced plan supports **significantly higher rate limits**, tailored to your workload. This is the right fit for teams running AI at scale, with sustained traffic or strict latency requirements.

<Info>
  Interested in the Advanced AI Platform? [Contact sales through the live chat](https://www.edenai.co/contact) to discuss your throughput needs.
</Info>

## Next Steps

<CardGroup cols={2}>
  <Card title="Plans & Pricing" icon="tag" href="/v3/overview/plans-prices">
    Compare the Self-serve and Advanced plans.
  </Card>

  <Card title="Monitor Usage" icon="chart-line" href="/v3/general/monitoring">
    Track your request volume and latency in real time.
  </Card>
</CardGroup>
