Geocode Addresses to Coordinates
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Addresses to coordinates and back
Convert between addresses and geographic coordinates. Forward geocode any address to get latitude/longitude, or reverse geocode coordinates to get the nearest street address. Useful for mapping, logistics, and location-aware workflows.
Convert a full or partial address into geographic coordinates. Returns matching locations with latitude, longitude, full address breakdown, and relevance scores.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "address-geocoding",
"skill": "geocode_address",
"input": {
"address": "1600 Pennsylvania Avenue, Washington DC"
}
}' \
https://api.toolrouter.com/v1/tools/callConvert latitude and longitude coordinates into a human-readable address. Returns the full address breakdown with street, city, state, country, and postal code.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "address-geocoding",
"skill": "reverse_geocode",
"input": {
"latitude": 51.5074,
"longitude": -0.1278
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"address-geocoding","skill":"geocode_address","input":{}}' \
https://api.toolrouter.com/v1/tools/callConvert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Convert latitude and longitude coordinates into human-readable street addresses and place names.
Find relevant academic papers on any research topic across millions of scholarly publications.
Access detailed demographic data for any country including population, languages, ethnic groups, and age distribution.
Yes. `geocode_address` accepts full or partial addresses, and the most specific input usually gives the best match.
Use `reverse_geocode` with latitude and longitude. It returns the nearest human-readable address with street, city, state, country, and postal code.
The geocoding response includes an importance score from 0 to 1, which helps you pick the strongest match when more than one result looks plausible.
Yes. The tool is optimized for one address at a time, so for bulk work you call `geocode_address` once per address in sequence.