Skip to content

Commands Reference

Terminal window
# List all regions (table format)
gis.ph regions list
# List with pagination
gis.ph regions list --limit 5 --page 2
# List regions in JSON format
gis.ph regions list --format json
# Filter regions (e.g., status:active)
gis.ph regions list --filter status:active
# Get region by PSGC code
gis.ph regions get 0700000000
Terminal window
# List all provinces
gis.ph provinces list
# List with pagination
gis.ph provinces list --limit 10 --page 1
# Get province by PSGC code
gis.ph provinces get 0702200000
# Get province with GeoJSON boundaries
gis.ph provinces get 0702200000 --geometry
Terminal window
# List all cities/municipalities in a province (REQUIRED)
gis.ph municities list --province "Bohol"
# Filter by name (starts with)
gis.ph municities list --province "Bohol" --name "Al"
# Get municipality by PSGC code
gis.ph municities get 0730600000
# Get municipality with barangay boundaries (GeoJSON)
gis.ph municities get 0730600000 --geometry
Terminal window
# List barangays in a province (REQUIRED)
gis.ph barangays list --province "Cebu"
# Filter by municipality and/or barangay name
gis.ph barangays list --province "Cebu" --municipality "Poro" --name "Pob"
# Get barangay by PSGC code
gis.ph barangays get 0730600041