Text Search (New)
documentedSearch places by text.
POST https://places.googleapis.com/v1/places:searchTextPlaces API (New)no implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://places.googleapis.com/v1/places:searchText" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Goog-Api-Key: {{MAPS_API_KEY}}" \
-H "X-Goog-FieldMask: places.displayName,places.formattedAddress" \
-d '{\"textQuery\": \"{{$textQuery}}\", \"languageCode\": \"{{$languageCode}}\", \"regionCode\": \"{{$regionCode}}\", \"pageSize\": {{$pageSize}}, \"locationBias\": {\"circle\": {\"center\": {\"latitude\": {{$lat}}, \"longitude\": {{$lng}}}, \"radiusMeters\": {{$radius}} } } }'