Skip to main content
GET
/
v1
/
routes
/
{routeId}
Get Route
curl --request GET \
  --url https://8511e6e5e351.ngrok-free.app/v1/routes/{routeId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "37b18c41-9752-4adf-9aef-f42ab4f74b04",
  "pathname": "/about",
  "localizedVariants": [
    {
      "locale": "es-MX",
      "pathname": "/muebles"
    },
    {
      "locale": "fr-CA",
      "pathname": "/meubles"
    }
  ]
}

Authorizations

Authorization
string
header
required

The API key for the App (e.g. sk_eczMHVBY9fV6GYFhvs53qcnxq7yptlXL3ABKOZtn6dQ)

Path Parameters

routeId
string<uuid>
required

Response

200 - application/json

Site route with its localized variants.

id
string<uuid>
required
pathname
string
required

Pathname of the route, e.g., "/about".

Example:

"/furniture"

localizedVariants
object[]
required

List of localized variants for the route. Each variant has a locale and a pathname.

Example:
[
{
"locale": "es-ES",
"pathname": "/sobre-nosotros"
},
{
"locale": "fr-FR",
"pathname": "/a-propos"
}
]