API Documentation
Map API v1
API Documentation
Complete guide to using the Map API for geocoding and location services
API Versioning
All API endpoints are versioned to ensure backward compatibility and allow for future improvements.
Current Version: v1
Base URL: https://geo.geofinder.live
Path format: /api/v1/ (e.g. /api/v1/autocomplete)
Future versions (v2, v3, etc.) will be available when needed, allowing you to migrate at your own pace while maintaining access to older versions.
Direct API
All requests go directly to the API at https://geo.geofinder.live. There is no frontend proxy — you call the API with your API key and secret key. Endpoints are versioned under /api/v1/ (autocomplete, place-details, directions, distance-matrix).
- Base URL:
https://geo.geofinder.live - Authentication: Send
X-API-KeyandX-Secret-Keyheaders with every request. - Credits: Usage is tracked per API key; check your dashboard for remaining credits.
Quick Start
- Register an account at /register
- Login to get your JWT token
- Create an API key from the API Keys page
- Use your API key and secret key to call
https://geo.geofinder.live/api/v1/*directly - Try requests live in the Playground — no code required; test success and error responses side by side.
Typical Workflow
- Search for places: Use
/api/v1/autocompletewith a query to get suggestions - Get place details: Use the
idfrom autocomplete results asautocomplete_idin/api/v1/place-details - Calculate distance: Use autocomplete IDs directly in
/api/v1/distance-matrixwithorigin_autocomplete_idanddestination_autocomplete_id - Get distance with routes: Use
/api/v1/directionswithaddress1andaddress2to get multiple route options with traffic information - Use place_id: Once you have a
place_id, you can directly query place details using it
Example: Search for "New York" and "Los Angeles" → Get autocomplete suggestions → Use the id values as origin_autocomplete_id and destination_autocomplete_id in distance-matrix API → Get distance and travel time. The API automatically handles missing coordinates!
Available Endpoints
/api/v1/autocomplete/api/v1/place-details/api/v1/directions/api/v1/distance-matrixTry the API
Use the Playground to call any endpoint in the browser with your API keys and see success or error responses. Or download the Postman collection for use in your own environment.
- Playground — Test in-browser; responses shown side by side
- Postman — Pre-configured headers and example requests
- Environment variables for easy configuration