Google Maps Url To Address avatar
Google Maps Url To Address
Under maintenance

Pricing

Pay per usage

Go to Apify Store
Google Maps Url To Address

Google Maps Url To Address

Under maintenance

Converts any Google Maps URL to a fully formatted address and also coordinates.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Khalil Viguurs Khan

Khalil Viguurs Khan

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

3 days ago

Last modified

Share

Google Maps URL to Coordinates Actor

This Apify actor converts a Google Maps URL into geographic coordinates and a full formatted address.

It works without browser automation. The actor extracts latitude and longitude directly from the Google Maps link and then uses OpenStreetMap Nominatim to retrieve the address.

Features

  • Extract latitude and longitude from Google Maps URLs
  • Supports place links, search links, direction links, and short links
  • Resolves shortened Google Maps URLs automatically
  • Returns a full formatted address
  • No API key required
  • Fast and reliable

Input

The actor expects a single Google Maps URL.

Example input:

{
"googleMapsUrl": "https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2922926,17z"
}

Output

The actor returns coordinates and address data in JSON format.

Example output:

{
"latitude": 48.8583701,
"longitude": 2.2922926,
"formattedAddress": "Eiffel Tower, 5 Avenue Anatole France, 75007 Paris, France",
"addressDetails": {
"road": "Avenue Anatole France",
"city": "Paris",
"postcode": "75007",
"country": "France"
},
"source": "openstreetmap"
}

How it works

1. Resolves the final URL if a shortened Google Maps link is provided
2. Extracts latitude and longitude from the URL
3. Uses OpenStreetMap Nominatim for reverse geocoding
4. Returns structured location data

Use cases

• Location data extraction
• Travel and mapping automations
• Real estate workflows
• SEO and local business tools
• Data enrichment pipelines

Notes

• This actor uses OpenStreetMap Nominatim and follows their usage policy
• No browser automation or page scraping is used
• Designed for automation workflows and API usage

License

This project is licensed under the MIT License. See the LICENSE file for details.