List all TTFB regions

GET /v1/ttfb-regions

Returns a list of SpeedVitals supported regions for TTFB test

Responses

  • 200

    Successful response.

    Hide response attribute Show response attribute object
    • data array[object]

      An array of region objects

      Hide data attributes Show data attributes
      • id string

        Values are asia, america, or europe.

      • name string
      • locations array[object]
        Hide locations attributes Show locations attributes
GET /v1/ttfb-regions
curl \
 -X GET https://api.speedvitals.com/v1/ttfb-regions
Response examples (200)
{
  "data": [
    {
      "id": "asia",
      "name": "Asia Pacific and Africa",
      "locations": [
        {
          "id": "del",
          "name": "Delhi"
        },
        {
          "id": "sgp",
          "name": "Singapore"
        },
        "{...}",
        "{...}"
      ]
    },
    "{...}",
    "{...}"
  ]
}