Tools / Address Geocoding
Address Geocoding icon

Address Geocoding

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.

2 skillsv0.02
Geocode Address

Convert a full or partial address into geographic coordinates. Returns matching locations with latitude, longitude, full address breakdown, and relevance scores.

Returns: Matching locations with coordinates, full address breakdown, and relevance scores
Parameters
address *stringFull or partial address to geocode (e.g. "1600 Pennsylvania Avenue, Washington DC")
limitnumberMaximum number of results to return (1-10, default 5)
Example
Geocode the White House address
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/call
Reverse Geocode

Convert latitude and longitude coordinates into a human-readable address. Returns the full address breakdown with street, city, state, country, and postal code.

Returns: Full address breakdown with street, city, state, country, and postal code for the given coordinates
Parameters
latitude *numberLatitude coordinate (e.g. 51.5074)
longitude *numberLongitude coordinate (e.g. -0.1278)
Example
Reverse geocode coordinates in London
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/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-21
  • Initial release

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"address-geocoding","skill":"geocode_address","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Geocode Addresses to Coordinates

Geocode Addresses to Coordinates

Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.

Address Geocoding icon
Address Geocoding
4 agent guides
Open Search Papers by Topic

Search Papers by Topic

Find relevant academic papers on any research topic across millions of scholarly publications.

Academic Research icon
Academic Research
4 agent guides
Open Research Country Demographics

Research Country Demographics

Access detailed demographic data for any country including population, languages, ethnic groups, and age distribution.

Country Data icon
Country Data
4 agent guides
View all use cases for Address Geocoding

Frequently Asked Questions

Can I geocode a partial address?

Yes. `geocode_address` accepts full or partial addresses, and the most specific input usually gives the best match.

How do I turn coordinates back into a street address?

Use `reverse_geocode` with latitude and longitude. It returns the nearest human-readable address with street, city, state, country, and postal code.

What if a search returns multiple matches?

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.

Can I use this for a list of addresses?

Yes. The tool is optimized for one address at a time, so for bulk work you call `geocode_address` once per address in sequence.