For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesAPI ReferenceChangelogModel Versioning
GuidesAPI ReferenceChangelogModel Versioning
    • Getting Started
    • Authentication
    • API Versioning
    • SDKs
    • Deployments
  • Processor Endpoints
    • POSTRun Processor
    • GETGet Processor Run
    • GETList Processor Runs
    • POSTCancel Processor Run
    • DELDelete Processor Run
    • GETGet Batch Processor Run
    • GETList Processors
    • POSTCreate Processor
    • POSTUpdate Processor
    • POSTPublish Processor Version
    • GETGet Processor Version
    • GETList Processor Versions
  • Parse Endpoints
    • POSTParse File
    • POSTParse File Async
    • GETGet Parser Run
    • DELDelete Parser Run
  • Workflow Endpoints
    • POSTRun Workflow
    • GETGet Workflow Run
    • GETList Workflow Runs
    • POSTUpdate Workflow Run
    • POSTCancel Workflow Run
    • DELDelete Workflow Run
    • POSTCreate Workflow
    • POSTBatch Run Workflow
    • POSTCorrect Workflow Run Outputs
  • File Endpoints
    • POSTUpload File
    • GETGet File
    • DELDelete File
    • GETList Files
    • POSTCreate File
  • Edit Endpoints
    • POSTEdit File
    • POSTEdit File Async
    • POSTGenerate Edit Schema
    • GETGet Edit Run
    • DELDelete Edit Run
    • GETGet Edit Template
  • Evaluation Set Endpoints
    • GETGet Evaluation Set
    • GETList Evaluation Sets
    • POSTCreate Evaluation Set
    • GETList Evaluation Set Items
    • POSTCreate Evaluation Set Item
    • POSTUpdate Evaluation Set Item
    • DELDelete Evaluation Set Item
    • POSTBulk Create Evaluation Set Items
LogoLogo
On this page
  • Available Environments
  • Configuring Your SDK

Deployments

Was this page helpful?
Previous

Run Processor

Next
Built with

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

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:

1import { ExtendClient } from "extend-ai";
2
3// US2
4const clientUs2 = new ExtendClient({
5 token: "YOUR_API_KEY_HERE",
6 baseUrl: "https://api.us2.extend.app"
7});
8
9// EU1
10const clientEu1 = new ExtendClient({
11 token: "YOUR_API_KEY_HERE",
12 baseUrl: "https://api.eu1.extend.ai"
13});