Skip to main content
GET
/
routes
/
v1
Get Routes
curl --request GET \
  --url https://api.enterspeed.com/routes/v1 \
  --header 'X-Api-Key: <x-api-key>'
{
  "total": 16,
  "pageInfo": {
    "hasNextPage": true,
    "hasPreviousPage": false,
    "startCursor": "YmQ2YTY0NTgtZmU1Ny00MDZmLTlkMzgtNGNjMTczYWZmNzg2",
    "endCursor": "ZjJlNmY5NWYtOWM3ZS00N2I5LWI0N2ItMGY4M2YxYjMzZjQ1"
  },
  "results": [
    {
      "url": "/about-us",
      "redirect": null,
      "updatedAt": "2021-05-21T10:22:21.262781Z"
    }
  ]
}

Headers

X-Api-Key
string
required

Api key to validate your environment.

Example:

"environment-1637c4d0-e878-4738-b866-152106a4f88c"

Query Parameters

first
number

Get the first of the paginated list, aka. get the list in ascending order.

Example:

100

last
number

Get the last of the paginated list, aka. get the list in descending order.

Example:

100

before
number

The cursor to get data before, eg. previous page.

after
number

The cursor to get data after, eg. next page.

Response

Valid request.

total
number
pageInfo
object
results
object[]