Skip to main content
POST
/
api
/
expedia
/
hotels
/
offers
/expedia/hotels/offers
curl --request POST \
  --url https://api.anysite.io/api/expedia/hotels/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "hotel": "<string>",
  "check_in": "2023-12-25",
  "check_out": "2023-12-25",
  "count": 2,
  "timeout": 300,
  "adults": 2
}
'
[
  {
    "id": "<string>",
    "@type": "@expedia_room",
    "name": "<string>",
    "rating": 123,
    "features": [],
    "images": [],
    "rates": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
hotel
string
required

Expedia hotel id (numeric or h-prefixed) or a hotel page URL containing it

Minimum string length: 1
Examples:

"66525849"

"h66525849"

"https://www.expedia.com/x.h66525849.Hotel-Information"

check_in
string<date>
required

Check-in date in YYYY-MM-DD format

Example:

"2026-07-15"

check_out
string<date>
required

Check-out date in YYYY-MM-DD format

Example:

"2026-07-17"

count
integer
required

Max number of rooms to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
adults
integer
default:2

Number of adult guests

Required range: 1 <= x <= 14

Response

Successful Response

id
string
required
@type
string
default:@expedia_room
name
string | null
rating
number | null
features
string[]
images
string[]
rates
ExpediaRoomRate · object[]