> ## 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's infrastructure is hosted in secure European data centers to ensure optimal performance and compliance.

# Servers location

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={"Servers Location"} description={"Eden AI's infrastructure is hosted in secure European data centers to ensure optimal performance and compliance."} path="v3/data-governance/servers-location" articleSection="Data Governance" about={"Data Compliance"} proficiencyLevel="Intermediate" keywords={["Eden AI", "AI API", "GDPR", "data residency"]} datePublished="2026-05-06T00:00:00Z" dateModified="2026-05-22T00:00:00Z" />

Eden AI's infrastructure is hosted in secure European data centers to ensure optimal performance and compliance.

<Tip icon="earth-europe">
  Need to keep your AI calls inside the EU? Use the dedicated **EU endpoint** (`api.eu.edenai.run`), which only routes requests through EU-eligible providers and models. See the [EU Endpoint](/v3/data-governance/eu-endpoint) page.
</Tip>

## Provider Data Centers

When you make API calls through Eden AI, your data is processed by the underlying AI providers. Each provider operates their own data centers — locations vary per provider and model.

<Note>
  To check the server location of a specific provider or model, refer to the [Eden AI model catalog](https://app.edenai.run/models).
</Note>

## Next Steps

<CardGroup cols={2}>
  <Card title="EU Endpoint" icon="earth-europe" href="/v3/data-governance/eu-endpoint">
    Route requests through EU-eligible providers via api.eu.edenai.run
  </Card>

  <Card title="Data Retention" icon="clock-rotate-left" href="/v3/data-governance/data-retention">
    How long Eden AI keeps your data
  </Card>
</CardGroup>
