26 platforms, inside your AI
Zomler

API · Yelp

[ docs ]Places & travel

Yelp

Measured Yelp data, one operation per call. Businesses are named by their yelp.com/biz/ URL or its slug. Every fetch adds rating and review count to the business's history. ops: businesses (full profiles for up to ten businesses — address and coordinates, phone, website, menu, rating with star breakdown, review insights by topic with sentiment, review highlights, popular dishes, attributes, hours today, health inspections, Q&A), search (a query and location with sort, price levels and Yelp feature filters; every hit a full profile), reviews (reviews for up to ten businesses — text, rating, date, reactions, reviewer profile, owner reply), history (stored rating/review-count series for businesses 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/yelp

businesses

from 1 credit · fresh for 3 days

Full profiles for up to ten businesses by URL or slug — address, phone, website, rating and star breakdown, review insights by topic, popular dishes, attributes, hours, health inspections.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items

Example

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

reviews

from 7 credits for 25 · fresh for 3 days

Reviews for up to ten businesses — text, rating, date, reactions, reviewer profile, owner reply.

Request fields

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

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/yelp \
  -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 businesses already held — free.

Request fields

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

Example

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