Get API
Back to Marketplace
πŸ—ΊοΈ
Freemiumv1.8.0⭐ Featured API

GeoSmart Maps API

Maps & Location Infrastructure

GeoSmart covers the full location intelligence stack. Forward/reverse geocode with 5m accuracy. Point-to-point routing with traffic-aware ETAs for driving, cycling, and walking. Isochrone (reachability) polygons for market analysis. Autocomplete place search returning lat/lng and metadata.

RESTTypeScript SDKOpenAPINode.jsPython
https://api.geosmart.io/v1
Trust Score

4.8 / 5

254 dev notes

Live Uptime

99.97%

Guaranteed SLA

Avg Latency

55ms

Global Edge

API Traffic

8.9M

monthly average

Available Endpoints

GET/geocodeForward geocode an address
GET/reverseReverse geocode lat/lng
POST/routePoint-to-point routing
POST/isochroneReachability polygon for a point + time
GET/places/searchAutocomplete place search
Implementation Example
// Geocode an address
const res = await fetch(
  `https://api.geosmart.io/v1/geocode?address=${encodeURIComponent('1 Infinite Loop, Cupertino')}`,
  { headers: { 'X-API-Key': process.env.GEO_KEY } }
);
const { lat, lng, formatted } = await res.json();

// Traffic-aware route
const route = await fetch('https://api.geosmart.io/v1/route', {
  method: 'POST',
  headers: { 'X-API-Key': process.env.GEO_KEY, 'Content-Type': 'application/json' },
  body: JSON.stringify({ origin: [37.3318, -122.0312], destination: [37.7749, -122.4194], mode: 'driving' }),
});
const { distance_km, duration_min } = await route.json();

API Access

βœ“ FREE TIER ACTIVE

First 25,000 calls are free every month.

Personal$29/mo
Team$79/mo
Enterprise$299/mo
Technical Docs

API Provider

Ravi Patel

Ravi Patel

API architect & backend engineer. 12+ yrs building scalable APIs.