docs / lodging
Hotels & Rentals
Stays across the Expedia group — search and details.
base /lodging/v13 endpoints
post
/lodging/v1/search2 creditssearch properties by destination+dates (brand: vrbo|expedia|hotelscom|...)
| Parameter | Required |
|---|---|
| brand | optional |
| query | optional |
| region_id | optional |
| checkin | optional |
| checkout | optional |
| adults | optional |
| children | optional |
| currency | optional |
| locale | optional |
| include_raw | optional |
post
/lodging/v1/property_detail3 creditsfull property detail
| Parameter | Required |
|---|---|
| brand | optional |
| pdp_id | optional |
| url | optional |
| region_id | optional |
| adults | optional |
| checkin | optional |
| checkout | optional |
| include_raw | optional |
post
/lodging/v1/typeahead1 creditresolve a destination string to regionId(s)
| Parameter | Required |
|---|---|
| query | required |
| brand | optional |
Example request · search
curl -X POST https://api.reefapi.com/lodging/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"brand":"vrbo","query":"Miami, Florida","checkin":"2026-08-10","checkout":"2026-08-15","adults":2}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}