Skip to main content
POST
/
api
/
expedia
/
hotels
/
search
/expedia/hotels/search
curl --request POST \
  --url https://api.anysite.io/api/expedia/hotels/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "region_id": "<string>",
  "count": 2,
  "timeout": 300,
  "check_in": "2026-07-10",
  "check_out": "2026-07-12",
  "adults": 2
}
'
[
  {
    "id": "<string>",
    "@type": "@expedia_search_hotel",
    "name": "<string>",
    "neighborhood": "<string>",
    "url": "<string>",
    "is_vip": false,
    "image": "<string>",
    "images": [],
    "guest_rating": 123,
    "guest_rating_label": "<string>",
    "review_count": 123,
    "price_total": "<string>",
    "price_per_night": "<string>",
    "strikeout_price": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
region_id
string
required

Numeric Expedia region id to search hotels in (a city, neighborhood or area destination)

Minimum string length: 1
Example:

"2621"

count
integer
required

Max number of hotels to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
check_in
string | null

Check-in date in YYYY-MM-DD format

Example:

"2026-07-10"

check_out
string | null

Check-out date in YYYY-MM-DD format

Example:

"2026-07-12"

adults
integer
default:2

Number of adult guests

Required range: 1 <= x <= 14

Response

Successful Response

id
string
required
@type
string
default:@expedia_search_hotel
name
string | null
neighborhood
string | null
url
string | null
is_vip
boolean
default:false
image
string | null
images
string[]
guest_rating
number | null
guest_rating_label
string | null
review_count
integer | null
price_total
string | null
price_per_night
string | null
strikeout_price
string | null