πŸ—ΊοΈ

Maps Geocoding API

Convert any address or place name to lat/lng coordinates using OpenStreetMap Nominatim. No Google Maps API key needed.

API Docs $0.002 / request

About this tool

Geocoding converts human-readable addresses into geographic coordinates (latitude and longitude). Powered by OpenStreetMap Nominatim β€” the same open-source geocoder behind thousands of apps. Returns up to 20 results with full address details, place type, and importance score.

Quick Start

curl "https://api.iteratools.com/maps/geocode?q=Eiffel+Tower,Paris&limit=1" \ -H "Authorization: Bearer YOUR_KEY"

Parameters

Param Type Required Description
qstringrequiredAddress or place name to geocode
countrystringoptionalFilter by country ISO code (e.g. BR, US, FR)
limitintegeroptionalMax results (default 5, max 20)

Example Response

{ "ok": true, "data": { "query": "Eiffel Tower, Paris", "count": 1, "results": [{ "display_name": "Tour Eiffel, 5, Avenue Anatole France, Paris, France", "lat": 48.8583736, "lng": 2.2922926, "type": "attraction", "importance": 0.8943, "address": { "attraction": "Tour Eiffel", "road": "Avenue Anatole France", "city": "Paris", "country": "France", "country_code": "fr" }, "osm_id": 5013364 }] } }

Use Cases

  • AI agents that need to convert user-provided addresses to coordinates
  • Mapping apps that need to locate businesses or landmarks
  • Data pipelines that enrich address records with geolocation
  • Chatbots that answer "where is X?" questions
  • Delivery/logistics apps calculating routes from street addresses

Pricing

$0.002 per request via x402 micropayment on Base (USDC). No subscription. No minimum.

Full Documentation Maps Places β†’ Maps Directions β†’