Deployments

Extend operates multiple deployments to support different regulatory and data residency requirements.

If you’re unsure which environment you are in or should be in, reach out to us!

Available Environments

  • Production (Default): https://api.extend.ai - Our primary production environment
  • US2: https://api.us2.extend.app - Additional US production deployment
  • EU1: https://api.eu1.extend.ai - European deployment for EU data residency requirements
DeploymentBase URLCLI EXTEND_REGION
Production (Default)https://api.extend.aius
US2https://api.us2.extend.appus2
EU1https://api.eu1.extend.aieu

The US2 deployment is served from the extend.app domain (not extend.ai). This is intentional — use the host exactly as shown above.

Configuring Your SDK

By default, our SDKs connect to the production endpoint (api.extend.ai). To use a different deployment, configure your SDK with the appropriate base URL:

1from extend_ai import Extend
2
3# US2
4client_us2 = Extend(
5 token="YOUR_API_KEY_HERE",
6 base_url="https://api.us2.extend.app"
7)
8
9# EU1
10client_eu1 = Extend(
11 token="YOUR_API_KEY_HERE",
12 base_url="https://api.eu1.extend.ai"
13)