Skip to main content
is available in the European Union (EU). in the EU provides:
  • Data residency: All data is stored and processed within the EU
  • GDPR compliance: The EU-hosted version of is compliant with the General Data Protection Regulation (GDPR)
  • Regional performance: Reduced latency for European users

GDPR and Compliance

Refer to the resources below to learn more about GDPR and compliance.

EU Pricing

For the Explore plan, $1.30 USD = 100 credits. We price in US dollars across all regions. Your payment will be processed in USD using current exchange rates.

Differences When Using the EU

Using in the EU works the same as the default US deployment, with only a few key differences outlined in this article:

Create an Account in the EU

Create an account and access the Playground in the EU here: https://va.eu-west-1.landing.ai/home.

Get Your API Key for the EU

To get your API key for the EU, go to https://va.eu-west-1.landing.ai/settings/api-key. Use this API key when using the library or calling the API directly in the EU. API keys are deployment-specific. An API key created in the US will not work for the EU, and vice versa.

Call the API Directly in the EU

To ensure your API calls are processed in the EU, replace the default base URL with the EU base URL: US: https://api.va.landing.ai
EU: https://api.va.eu-west-1.landing.ai
For example:
  • US: https://api.va.landing.ai/v1/ade/parse
  • EU: https://api.va.eu-west-1.landing.ai/v1/ade/parse

Use the Library with the EU

To connect the LandingAI library to the EU deployment, configure the endpoint based on which library you’re using. landingai-ade library (recommended) If using the Python library, set the environment parameter to eu when initializing the client.
client = LandingAIADE(
    environment="eu",
)
Legacy agentic-doc library If using the legacy agentic-doc Python library, set the EU endpoint as an environment variable before using the library.
export ENDPOINT_HOST=https://api.va.eu-west-1.landing.ai