Natural Language Google Maps Search

Ask for any location in plain English and get detailed Google Maps results

🗣️
Natural Language

Ask for locations like you would to a person. "Coffee shops near Central Park" works perfectly.

🚶
Walking Directions

Get step-by-step walking directions to your destination from your current location.

🚕
Transportation Options

Discover the best ways to get there with personalized transportation recommendations.

🔍
Smart Results

Results are intelligently ranked by relevance to your query and preferences.

Try It Out
Traveler Preferences

Customize your preferences to get personalized recommendations.


Results
API Response:

        
API Documentation
Endpoint: /map-search

Send a POST request with the following JSON body for location search:

{
  "query": "coffee shops near times square",
  "currentLocation": {
    "lat": 40.7580,
    "lng": -73.9855
  },
  "includeDirections": true,
  "travelerState": {
    "budget": "economy",
    "travelers": "solo",
    "transportPreference": "public-transit",
    "priorityFactor": "cost"
  }
}

Note: travelerState is optional and will enhance results with personalized recommendations.

Endpoint: /transportation

Send a POST request with the following JSON body for transportation options:

{
  "origin": "Times Square",
  "destination": "JFK Airport",
  "travelerState": {
    "budget": "economy",
    "travelers": "solo",
    "luggage": "light",
    "timeConstraint": "urgent",
    "transportPreference": "public-transit",
    "priorityFactor": "time"
  },
  "timesOnly": false
}

Notes:
- origin and destination are required
- travelerState is optional but highly recommended for personalized recommendations
- timesOnly when true returns just route times without detailed recommendations (smaller payload)