From 2a4e8107e4a9c3b43703c609b91c4e6929192e37 Mon Sep 17 00:00:00 2001 From: Jimmy Jose Pulikkan Date: Fri, 19 Jun 2026 15:33:36 +0100 Subject: [PATCH] Add global.rt.speechmatics.com to Realtime endpoints docs (DEL-33496) --- docs/api-ref/realtime-transcription-websocket.mdx | 4 ++++ docs/get-started/authentication.mdx | 15 +++++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/api-ref/realtime-transcription-websocket.mdx b/docs/api-ref/realtime-transcription-websocket.mdx index b8e6da37..4b1807cd 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 7a0bf6ec..591b6d79 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. +:::