26 platforms, inside your AI
Zomler

API · Airbnb

[ docs ]Places & travel

Airbnb

Measured Airbnb data, one operation per call. Listings are named by URL or room id. A `stay` (checkIn, checkOut, adults, children, infants, pets, currency) is part of every price — without dates a card comes back unpriced — and every priced fetch adds a point to the listing's history tagged with that stay. ops: listings (full cards for up to ten listings — nightly and total price, availability, overall and per-category ratings, review count, amenities, house rules, cancellation policy, host with superhost flag), reviews (reviews for up to ten listings — text, rating, date, host response), history (stored price/rating series for listings 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/airbnb

listings

from 2 credits · fresh for 12 hours

Full cards for up to ten listings by URL or room id, priced for a stay — nightly and total price, availability, ratings by category, amenities, house rules, cancellation policy, host.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
stayobjectall defaults
stay.checkInstringYYYY-MM-DD
stay.checkOutstringYYYY-MM-DD
stay.adultsinteger21-16
stay.childreninteger00-10
stay.infantsinteger00-5
stay.petsinteger00-5
stay.currencystringUSDISO 4217
stay.localestringen-US≤10 chars

Example

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

reviews

from 49 credits for 25 · fresh for 3 days

Reviews for up to ten listings — text, rating, date, host response.

Request fields

FieldTypeDefaultValues / limits
subjectsrequiredlist of string1-10 items
localestringen-US≤10 chars
limitinteger251-100

Example

curl
curl -X POST https://api.zomler.com/api/v1/platforms/airbnb \
  -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 price/rating series of listings already held — free.

Request fields

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

Example

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