GET
/
api
/
v1
/
regions
Obtener Regiones Disponibles
curl --request GET \
  --url http://localhost:8787/api/v1/regions
[
  {
    "name": "africa",
    "countryCount": 59,
    "subregions": [
      "Eastern Africa",
      "Middle Africa",
      "..."
    ]
  },
  {
    "name": "americas",
    "countryCount": 57,
    "subregions": [
      "Caribbean",
      "Central America",
      "..."
    ]
  }
]

Response

200
application/json

Una lista de resúmenes de regiones.

The response is of type object[].