Get a TTFB region

GET /v1/ttfb-regions/{id}

Retrieves a TTFB region info

Path parameters

  • id string Required

    Region id

    Maximum length is 5000.

Responses

  • 200

    Successful response.

    Hide response attributes Show response attributes object
    • id string

      Values are asia, america, or europe.

    • name string
    • locations array[object]
      Hide locations attributes Show locations attributes
  • 404

    Resource Not Found

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