Geocoding
GET /v1/geocode
Section titled “GET /v1/geocode”Search addresses and return candidate locations.
HTTP
GET https://api.gis.ph/v1/geocode
Query parameters
q(string, required) — search textlimit(integer) — max results
Example (curl)
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 } ]}