Skip to content

Regions API

Returns a paginated list of Philippine regions.

GET /v1/regions

Returns a list of all geographical regions in the Philippines.

ParameterTypeRequiredDescription
pageintegerNoPage number (default: 1).
limitintegerNoItems per page (default: 10, max: 100).
Terminal window
curl -H "Authorization: Bearer <token>" \
"https://api.gis.ph/v1/regions?page=1&limit=5"

GET /v1/regions/{id}

Returns detailed information about a single region.

  • id (path): The unique identifier of the region.
Terminal window
curl -H "Authorization: Bearer <token>" \
"https://api.gis.ph/v1/regions/1"
{
"data": {
"id": 1,
"name": "Ilocos Region",
"designation": "Region I",
"code": "010000000"
},
"error": null
}