The dashboard is one app at
https://app.talqing.com and works against either.
What is regional and what is global
This is the distinction to get right before you build anything, because it decides where a resource you created can be found.
Your workspace already exists in every region. There is no enablement step, no per-region status and nothing to switch on. An empty region and a region you have never used look exactly the same, which is why every screen in the dashboard names the region it is showing you.
Provider keys are regional. A key you added in
in is not present in us, and an agent you rebuild in us will refuse to publish until you add it there too. See provider keys.One token, two base URLs
A personal access token names your workspace, not a place. The same token authenticates against both regions, and nothing in the token, the header or any request body says which region you are in.baseUrl and has no default. Talqing.from_env() in Python reads TALQING_BASE_URL and raises if it is missing, rather than picking a region for you.
Running the same agent in two regions
There is no copy, sync or replication between regions. Running one agent in both means creating it twice.1
Add the provider keys in the second region
Point at
https://api.us.talqing.com and add a key for every provider the agent’s model stack names. Publishing is refused without them, naming the provider.2
Create the agent again
Read the config out of the first region and POST it to the second. The config is a plain object, so this is a read and a write.Anything the config references by id — a tool, a knowledge base, a phone number — has to exist in the second region first, with its own ids. Ids do not travel.
3
Publish it, and buy credit there
Publishing is per region, so the new agent starts at version 1 in
us regardless of what its twin is on in in.Then buy credit in us. This is the part that surprises people: a balance in India does not pay for a call in the United States. See below.Credit does not cross a region
The credit balance is a regional record, and there is no transfer between regions. You can hold 0 in the United States, and in that state:- A call started against
https://api.in.talqing.comruns. - The same call against
https://api.us.talqing.comis refused with402and reads back withclose_reason: "insufficient_credits".
Choosing a region
Pick the one your callers are in. Media travels from the caller to the region’s workers and back on every turn, so distance is added latency on every single reply, and it is the one cost you cannot tune away with a faster model.- Callers in India →
in. - Callers in the United States, Europe or anywhere else →
us.
The region switcher
The dashboard’s region switcher is a mode, not a filter. Switching is a full navigation: the agent list, the call history, the numbers and the credit balance all change to that region’s. Nothing is merged across regions in any view, and there is no all-regions total anywhere in the product. If a page is unexpectedly empty after switching, you are almost certainly looking at the other region’s data — or rather, at the absence of it.The control plane
Signing in, workspaces, members, roles, personal access tokens and payments do not live in a region. They live on a separate host,https://api.control.talqing.com, which is why none of them appears in the regional API, the SDKs or the MCP server. A regional base URL answers 404 for those paths; that is you aiming at the wrong host, not a missing feature.
Every authenticated regional request asks the control plane who you are, which has one consequence worth writing a branch for:
A
503 is transient and says nothing about your token. Treating it like a 401 — clearing credentials, forcing a re-login — is the wrong response to a network blip.
Next
Pricing and credits
The platform fee, the packs, and why the balance is per region.
Authentication
Tokens, the Bearer header, and what 401 versus 403 means.