places_search
GET /places/search — Search Google Places
Search for places by name. Use this to look up a Google Place ID before creating a trip or referencing a venue.
Results include a type field that classifies each match as city (a chapter-level locality usable for trips) or venue (a specific establishment, address, or country/region match — usable for events/meetups but rejected by POST /trips). Filter on type === "city" if you're building a trip-creation flow; pass either type to event/meetup APIs.
Every result also includes the full enriched location (description, lat, lon, region, regionCode, utcOffsetMins) so the same payload can be passed straight to POST /trips without a follow-up GET /places/:placeID lookup.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search query (city name, country, address, etc.) | |
| limit | No | Max results (1-20) |