26 platforms, inside your AI
Zomler

API · Google Maps

[ docs ]Places & travel

Google Maps

Measured Google Maps data, one operation per call. Places are named by a Google Maps URL carrying a place id or cid, or by a bare ChIJ… place id. Every fetch adds rating, review count and live occupancy to the place's history. ops: places (full cards for up to ten places — rating and star breakdown, review keywords, price range, phone, website, emails and socials, full address and coordinates, opening and special hours, popular times, attributes, owner posts, menu and reservation links, closed/unclaimed flags), search (a query in a location with minRating and website filters; every hit a full card), reviews (reviews for up to ten places — text, stars, date, reviewer with local-guide flag, owner response; four sort orders), history (stored rating and review-count series for places already held, free). Ops are independent — issue several as PARALLEL tool calls. Fresh fetches cost credits; anything already held is free.

POST https://api.zomler.com/api/v1/platforms/google_maps

places

from 4 credits · fresh for 3 days

Full cards for up to ten places by Maps URL (place id or cid) — rating and breakdown, review keywords, contact, address, hours, popular times, attributes, socials, owner posts.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/google_maps \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "places",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'

reviews

from 7 credits for 25 · fresh for 3 days

Reviews for up to ten places — text, stars, date, reviewer, owner response; sorted newest, most relevant, highest or lowest.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
sortenumnewestnewestrelevancerating_highrating_low
limitinteger251-100

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/google_maps \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "reviews",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'

history

free · reads what is held

Stored rating/review-count series of places already held — free.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
metricenumratingratingreviewslive_occupancy_percent
daysinteger901-730

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/google_maps \
  -H "X-API-Key: zk_live_…" \
  -H "Content-Type: application/json" \
  -d '{
  "request": {
    "op": "history",
    "subjects": [
      "example"
    ]
  },
  "estimateOnly": false
}'