The playground
Try any of 1042 endpoints — live.
Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.
Playground demo key · api.reefapi.com
post/airbnb/v1/stays.search2 credits
Search stays in a location for given dates (≈26 cards/page, cursor-paginated).
Working example
Parameters
Where to search — city/region free text ('Istanbul, Turkey', 'Paris, France').
Check-in date (YYYY-MM-DD).
Check-out date (YYYY-MM-DD).
Number of adult guests. (1–16)
Next page: pass the previous response's meta.pagination.next_cursor (the 'Next' button does this automatically).
Price currency (ISO code: EUR, USD, GBP, TRY…).
Response language (en, de, tr, es…).
Advanced: include the full raw response payload per listing card.
request preview
curl -X POST https://api.reefapi.com/airbnb/v1/stays.search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"query":"Istanbul, Turkey","checkin":"2026-08-10","checkout":"2026-08-15","adults":"2"}'Hit Send to run this endpoint live.