26 platforms, inside your AI
Zomler

API · Google

[ docs ]Search

Google

Measured Google data, one operation per call — five surfaces. ops: search (web results for a query: link, title, snippet, domain, rank, related questions and searches; supports site:, intitle:, OR; country/language/site/since/until filters; billed per page of ~10), news (Google News articles: headline, publisher, date, link; postedWithin, country and language), images (Google Images: URL, source page, dimensions), shopping (Shopping offers: title, merchant, price, rating, review count; country, language, postedWithin), playReviews (Play Store reviews for up to five apps by package id or URL — text, rating, date, app version, developer reply, sub-ratings; country, language, sort). 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

news

from 39 credits for 20

Google News articles for a query — headline, publisher, date, link.

Request fields

FieldTypeDefaultValues / limits
queryrequiredstring≤300 chars
postedWithinenum7d1h1d7d1yany
countrystringUSISO alpha-2
languagestringenBCP-47
limitinteger201-100

Example

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

images

from 20 credits for 20

Google Images for a query — URL, source page, dimensions, thumbnail.

Request fields

FieldTypeDefaultValues / limits
queryrequiredstring≤300 chars
limitinteger201-100

Example

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

shopping

from 58 credits for 20

Google Shopping offers for a query — title, merchant, price, rating.

Request fields

FieldTypeDefaultValues / limits
queryrequiredstring≤300 chars
countrystringUSISO alpha-2
languagestringenBCP-47
postedWithinenumany1h1d7d30dany
limitinteger201-100

Example

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

playReviews

from 5 credits for 50 · fresh for 1 day

Play Store reviews for up to five apps, by package id or store URL.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-5 items
countrystringUSISO alpha-2
languagestringenBCP-47
sortenumnewestnewestrating_highhelpful
limitinteger501-100

Example

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