Skip to main content
Tanqory IconTanqory Logo
Log In
Get Started
  • Home
  • Why Tanqory
  • Pricing
  • Partners
  • Themes
  • App Store
  • Academy
  • Affiliates
  • Community
  • Developers
  • Support
  • Business Tools
  • News
  • Research
  • Blog
  • Engineering
  • Legal
  • Status
  • Build & Launch
  • Sell & Get Paid
  • Market & Engage
  • Ship & Deliver
  • Operate & Control
  • Go Global
  • Platform Overview
  • Commerce Core
  • Builder
  • Creative & Brand
  • Intelligence & Automation
  • Operations
  • Integrations
  • Industries overview
  • E-commerce & Retail
  • Wholesale & B2B
  • Restaurants
  • Events & Ticketing
  • Health & Wellness
  • Services
  • About
  • Executive
  • Leadership
  • Governance
  • Brand Identity
  • Careers
  • Legal
Reference
Tanqory.com
API reference
  • Overview
  • Admin API
  • Store API
  • AI API
Get started
  • Quickstart
  • Authentication
  • Base URLs and regions
  • Pagination
  • Errors
  • Rate limits
  • Webhooks
  • Versioning
Build with
  • SDKs
  • MCP server
  • Agent runtime
Resources
  • Publication coverage
  • API license and terms↗
  • Status↗
  • Trust center↗
API reference
  • Overview
  • Admin API
  • Store API
  • AI API
Get started
  • Quickstart
  • Authentication
  • Base URLs and regions
  • Pagination
  • Errors
  • Rate limits
  • Webhooks
  • Versioning
Build with
  • SDKs
  • MCP server
  • Agent runtime
Resources
  • Publication coverage
  • API license and terms↗
  • Status↗
  • Trust center↗

Base URLs and regions

Where each Tanqory API lives — and how to resolve your store's regional base URL.

Tanqory exposes three APIs. Two sit on fixed global hosts; the Store API is deployed per store, in the cloud region you provisioned it in, so its base URL is resolved per store rather than fixed.

The three services

APIBase URLNotes
Adminhttps://api.tanqory.comAuth, stores, billing, domains. One global host.
AIhttps://ai.tanqory.comChat, RAG, embeddings, agents. One global host.
Storeper-store regional podProducts, orders, themes, analytics. Resolved per store — see below.

Store base URLs are per-region

Each store runs in a specific cloud provider + region that you chose when the store was created. Its data lives there (a data-residency decision), and its API is served from a matching regional host of the form:

https://api-{provider}-{region}.tanqory.com

For example, a DigitalOcean Singapore store is served from https://api-do-sgp1.tanqory.com. The Store API contract is identical across every region — only the host differs.

Don't hard-code or hand-build a store's host. Region naming can change; resolve the base URL from the store's record instead (next section). The host pattern above is for understanding, not for string-building in production code.

Resolve your store's base URL

The Admin API is the source of truth for where a store lives. Read the store record and use its cloud provider + region (the platform is adding a ready apiBaseUrl field — prefer it once available):

# Admin API — always api.tanqory.com
curl https://api.tanqory.com/api/v1/stores/STORE_ID \
  -H "Authorization: Bearer $TANQORY_API_KEY"
# → use the store's provider + region to address the Store API host

Then call the Store API at that regional host with the same Bearer token.

Available regions

Stores can be provisioned in any of these regions, across three clouds:

ProviderRegions
DigitalOceansgp1 · fra1 · nyc3 · sfo3 · lon1 · ams3 · tor1 · blr1
AWSap-southeast-1 · ap-northeast-1 · eu-west-1 · eu-central-1 · us-east-1 · us-west-2
Google Cloudasia-northeast1 · asia-southeast1 · europe-west1 · europe-west4 · us-west1 · us-central1 · us-east1

Data residency. A store's data stays in its region. Choose the region closest to your customers (latency) and aligned with your compliance needs. A store does not move regions after creation.

Next steps

TopicWhen to read it
QuickstartMake your first authenticated call.
AuthenticationThe same Bearer token works across all three APIs.
Store APIThe full Store reference (resolve the host as above).
  • Home
  • Why Tanqory
  • Pricing
  • Partners
  • Themes
  • App Store