diff --git a/docs/api-ref/realtime-transcription-websocket.mdx b/docs/api-ref/realtime-transcription-websocket.mdx
index b8e6da3..4b1807c 100644
--- a/docs/api-ref/realtime-transcription-websocket.mdx
+++ b/docs/api-ref/realtime-transcription-websocket.mdx
@@ -23,6 +23,10 @@ import realtimeSchema from "!asyncapi-schema-loader!@site/spec/realtime.yaml";
wss://eu.rt.speechmatics.com/v2/
+:::info
+You can also connect to `wss://global.rt.speechmatics.com/v2/`, which automatically routes to the lowest-latency region. Customers with data residency requirements should use a regional endpoint (`eu.rt` / `us.rt`) instead. See [Supported endpoints](/get-started/authentication#supported-endpoints).
+:::
+
## Protocol overview
A basic Realtime session will have the following message exchanges:
diff --git a/docs/get-started/authentication.mdx b/docs/get-started/authentication.mdx
index 7a0bf6e..591b6d7 100644
--- a/docs/get-started/authentication.mdx
+++ b/docs/get-started/authentication.mdx
@@ -87,10 +87,17 @@ The EU2 and US2 Batch SaaS endpoints are provided for enterprise customer high a
Speechmatics Realtime SaaS supports the following endpoints for production use:
-| Customer type | Region | Endpoint |
-| ------------- | ------------ | ---------------------- |
-| All | EU1 (Europe) | eu.rt.speechmatics.com |
-| All | US1 (USA) | us.rt.speechmatics.com |
+| Customer type | Region | Endpoint |
+| ------------- | ----------------------- | -------------------------- |
+| All | Global (lowest-latency) | global.rt.speechmatics.com |
+| All | EU1 (Europe) | eu.rt.speechmatics.com |
+| All | US1 (USA) | us.rt.speechmatics.com |
+
+`global.rt.speechmatics.com` automatically routes each connection to the lowest-latency region, so you do not have to choose one. The regional endpoints remain available if you want to pin to a specific region.
+
+:::warning
+`global.rt.speechmatics.com` may route a connection to any region. If you have data residency or compliance requirements, use a regional endpoint (`eu.rt.speechmatics.com` or `us.rt.speechmatics.com`) instead.
+:::