List all TTFB regions

GET /v1/ttfb-regions

Returns a list of SpeedVitals supported regions for TTFB test

Responses

GET /v1/ttfb-regions
curl \
 -X GET https://api.speedvitals.com/v1/ttfb-regions
Response example (200)
{
  "value": {
    "data": [
      {
        "id": "asia",
        "name": "Asia Pacific and Africa",
        "locations": [
          {
            "id": "del",
            "name": "Delhi"
          },
          {
            "id": "sgp",
            "name": "Singapore"
          },
          "{...}",
          "{...}"
        ]
      },
      "{...}",
      "{...}"
    ]
  }
}