Skip to content

Geocoding

Search addresses and return candidate locations.

HTTP

GET https://api.gis.ph/v1/geocode

Query parameters

  • q (string, required) — search text
  • limit (integer) — max results

Example (curl)

Terminal window
curl -H "Authorization: Bearer $GISPH_API_KEY" \
"https://api.gis.ph/v1/geocode?q=Manila&limit=3"

Response (200)

{
"data": [
{ "id": "loc_123", "name": "Manila, Philippines", "lat": 14.5995, "lng": 120.9842 }
]
}