Ask for any location in plain English and get detailed Google Maps results
Ask for locations like you would to a person. "Coffee shops near Central Park" works perfectly.
Get step-by-step walking directions to your destination from your current location.
Discover the best ways to get there with personalized transportation recommendations.
Results are intelligently ranked by relevance to your query and preferences.
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.
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)