List all locations

GET /v1/locations

Returns a list of SpeedVitals supported locations

Responses

  • 200 object

    Successful response.

    • data array[object]

      An array of location objects

      • id string

        Values are us, ca, br, de, uk, nl, pl, ch, jp, in, sg, au, id, kr, or tw.

      • name string
      • region string

        Values are America, Europe, or Asia Pacific.

GET /v1/locations
curl \
 -X GET https://api.speedvitals.com/v1/locations
Response example (200)
{
  "value": {
    "data": [
      {
        "id": "us",
        "name": "United States",
        "full_name": "South Carolina, US",
        "region": "America"
      },
      {
        "id": "de",
        "name": "Germany",
        "full_name": "Frankfurt, Germany",
        "region": "Europe"
      },
      "{...}",
      "{...}"
    ]
  }
}