Skip to main content
This feature is now deprecated for all new users. Existing users can continue to use Edge Replicas on Fly — read the announcement
For those seeking the ultimate in speed, Turso enables the embedding of databases directly within your application on the same node. This configuration eliminates inter-regional request hopping, effectively bringing latency down to zero.

How it works

  1. You create a database in a primary location
  2. You add additional locations where data should be replicated
  3. You query a single URL that automatically routes to the nearest edge

Add replica location

You can add locations to your database group using the Turso CLI or Platform API:
turso group locations add <group-name> <location-code>
curl -L -X POST 'https://api.turso.tech/v1/organizations/{organizationSlug}/groups/{groupName}/locations/{location}' \
  -H 'Authorization: Bearer TOKEN'

Remove replica location

You can remove locations from your database group using the Turso CLI or Platform API:
turso group locations remove <group-name> <...location-codes>
curl -L -X DELETE 'https://api.turso.tech/v1/organizations/{organizationSlug}/groups/{groupName}/locations/{location}' \
  -H 'Authorization: Bearer TOKEN'