Skip to content

Search: Places

Local business listings with coordinates and contact info. Use it for local entity lookup when you need addresses, phone numbers, and geographic coordinates.
const page = await google('coworking spaces barcelona', { type: 'places' })

Result fields

FieldTypeDescription
titlestringBusiness name
addressstringStreet address
latitudenumberGeographic latitude
longitudenumberGeographic longitude
ratingnumber?Average rating
ratingCountnumber?Number of reviews
categorystring?Business category
phone{ number }?Phone number
urlstring?Website URL
cidstringGoogle CID identifier
const page = await google('coworking spaces barcelona', { type: 'places' })

page.results[0]
// {
//   title: 'Betahaus | Coworking Barcelona',
//   address: 'Carrer de Vilafranca, 7, 08024 Barcelona, Spain',
//   latitude: 41.406982,
//   longitude: 2.1567652,
//   rating: 4.8,
//   ratingCount: 417,
//   category: 'Coworking space',
//   phone: { number: '+34 655 62 71 49' },
//   url: 'https://www.betahaus.es/...',
//   cid: '15533147541347981884'
// }
Choose places for simple local listings. Choose Maps when you need opening hours, price levels, or place IDs for downstream API calls.

See also

  • Maps — richer place metadata with ratings, hours, and pricing.
  • Integration patterns — entity and local lookup workflows.