Expedia Hotel & Flight Scraper avatar

Expedia Hotel & Flight Scraper

Pricing

from $1.00 / 1,000 hotels

Go to Apify Store
Expedia Hotel & Flight Scraper

Expedia Hotel & Flight Scraper

Scrapes Expedia hotel search with prices, ratings, amenities, photos and guest reviews, plus flight search with fares and journeys, from the Expedia mobile GraphQL API. Read-only public travel data.

Pricing

from $1.00 / 1,000 hotels

Rating

0.0

(0)

Developer

R.L.

R.L.

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Expedia Hotel & Flight Scraper 🏨✈️ β€” hotel prices, ratings, amenities, photos, guest reviews and flight fares

Expedia Hotel & Flight Scraper β€” Scrapes Expedia hotel search with prices, ratings, amenities, photos and guest reviews, plus flight search with fares and journeys, from the Expedia mobile GraphQL API. Read-only public travel data. It reads Expedia's own API directly, so it's fast, reliable and complete β€” no flaky HTML parsing, no headless browser. Export to JSON, CSV, Excel, or an API.


Hotel prices are display strings

Expedia returns a price as text ("$1,154 total"), never a number. Records keep that original string in price_display and a parsed numeric price_total with currency, so rows sort correctly without losing the "total"/per-night wording β€” which changes what the number means.

Optional extras

  • includeDetails β€” amenities, photo gallery, rating and fees. One extra API call per hotel, so it is slower; a failure on one hotel never loses that hotel's row.
  • includeReviews β€” recent guest reviews with score, date and author.

Some properties genuinely have no rating summary; those rows carry rating: null rather than a fabricated value.

✨ Why use this Expedia Hotel & Flight Scraper?

  • 🟒 No code required β€” set your input, click Start, download your data.
  • ⚑ Fast & accurate β€” reads Expedia's own private API and returns structured JSON, not scraped HTML.
  • 🧾 Rich, structured data β€” every field below, clean and ready to use.
  • 🏨 Deep hotel detail on demand β€” amenities, the full photo gallery, rating and mandatory fees, fetched only when you ask for them.
  • πŸ’¬ Guest reviews β€” text, score, date, author and stay length per review.
  • ✈️ Flights too β€” switch searchType to flights for fares, airlines and journey times.
  • πŸ’Έ Transparent pay-per-result pricing β€” pay only for the rows you get.
  • πŸ“€ Export anywhere β€” JSON, CSV, Excel, XML, or pull it live via the Apify API.

🎯 What can you do with Expedia data?

  • Market & competitor research β€” analyse Expedia products at scale.
  • Price & availability monitoring β€” track changes over time.
  • Data science & trend analysis β€” build clean datasets.
  • Lead generation & enrichment β€” feed Expedia data into your own tools.

πŸ“₯ What data does the Expedia Hotel & Flight Scraper extract?

Each row includes: type, destination, region_id, checkin, checkout, hotel_id, hotel_name, url, price_display, price_total, currency, image, rating, rating_text …and more. See the full Data table below.


πŸš€ How to scrape Expedia (3 steps)

  1. Set your input β€” provide searchType or destination (see the table below; defaults work out of the box).
  2. Pick options β€” filters, a proxyConfiguration, and a maxItems cap.
  3. Run & export β€” click Start, then download the dataset as JSON/CSV/Excel or fetch it via the API.

βš™οΈ Input

FieldTypeDefaultDescription
searchTypeenumhotelsHotels or flights. β€” one of hotels, flights
destinationstringCopenhagenFor hotels: a city or area name, e.g. "Copenhagen". For flights: the destination airport IATA code, e.g. JFK.
originstring–Origin airport IATA code, e.g. SEA. Ignored for hotel searches.
checkInstring–Hotel check-in, or flight departure date. Pick a date or use a relative value like "30 days". Empty = 30 days from today.
checkOutstring–Hotel check-out, or flight return date (leave empty for one-way). Empty for hotels = 3 nights after check-in.
adultsinteger2Number of adult guests or passengers.
includeDetailsbooleanfalseFetch amenities, photo gallery, rating and fees for each hotel. Slower and costs one extra API call per hotel.
includeReviewsbooleanfalseAttach recent guest reviews to each hotel.
reviewsPerHotelinteger5How many guest reviews to attach when reviews are enabled.
maxItemsinteger1000 = all results.
proxyConfigurationobjectApify ProxyRoute requests through a proxy (Apify Proxy by default).

Example input

{
"searchType": "hotels",
"destination": "Copenhagen",
"adults": 2,
"includeDetails": false,
"includeReviews": false,
"reviewsPerHotel": 5,
"maxItems": 100,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
}
}

πŸ“€ Output

Each result is a JSON object like this:

{
"type": "hotel",
"destination": "Copenhagen City Centre, Copenhagen, Hovedstaden, Denmark",
"region_id": "6051779",
"checkin": "2026-09-24",
"checkout": "2026-09-27",
"hotel_id": "25382",
"hotel_name": "Radisson Collection Royal Hotel, Copenhagen",
"url": "https://www.expedia.com/h25382.Hotel-Information",
"price_display": "$1,277 total",
"price_total": 1277.0,
"currency": "USD",
"image": "https://mediaim.expedia.com/lodging/1000000/30000/25400/25382/a5ccf8c1.jpg",
"rating": null,
"rating_text": null,
"review_count": null,
"amenities": null,
"images": null,
"fees": null,
"reviews": null,
"origin": null,
"departure_date": null,
"return_date": null,
"airlines": null,
"duration_minutes": null,
"stops": null,
"offer_id": null
}

🧾 Data table

FieldTypeDescription
typetextRecord type
destinationtextDestination
region_idtextRegion ID
checkintextCheck-in
checkouttextCheck-out
hotel_idtextHotel ID
hotel_nametextHotel
urllinkURL
price_displaytextPrice (as shown)
price_totalnumberPrice
currencytextCurrency
imageimageImage
ratingnumberRating
rating_texttextRating text
review_countnumberReviews
amenitiesarrayAmenities
imagesarrayPhotos
feestextFees
reviewsarrayGuest reviews
origintextOrigin
departure_datetextDeparture date
return_datetextReturn date
airlinesarrayAirlines
duration_minutesnumberDuration (min)
stopsnumberStops
offer_idtextOffer ID

πŸ’° Pricing β€” pay per result

This actor uses pay-per-event pricing: you pay only for the rows it delivers.

You scrapePrice
Record$2.00 per 1,000 rows

πŸ”Œ Use the Expedia Hotel & Flight Scraper via API

Run it programmatically with the Apify API:

curl -X POST "https://api.apify.com/v2/acts/expedia-api-scraper/runs?token=YOUR_TOKEN" \
-H 'Content-Type: application/json' \
-d '{
"searchType": "hotels",
"destination": "Copenhagen",
"adults": 2,
"includeDetails": false,
"includeReviews": false,
"reviewsPerHotel": 5,
"maxItems": 100,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
}
}'

Or with the Apify CLI: apify call expedia-api-scraper -i input.json -o.


❓ FAQ

Do I need an account or API key for Expedia Hotel & Flight?

No. The actor talks to Expedia's public/mobile API for you β€” you only need an Apify account.

Do I need a proxy?

A proxy is recommended for reliable runs; set proxyConfiguration (Residential is safest for geo-restricted or bot-protected sites).

What export formats are supported?

JSON, CSV, Excel, XML, JSONL, RSS, or live via the Apify API and dataset endpoints.

Is scraping this legal?

You are responsible for how you use the data. Scrape only public product data and comply with Expedia's Terms and applicable law (e.g. GDPR/CCPA for personal data).


πŸ› οΈ How it works

The actor impersonates Expedia's official app/site and calls its private API the same way the app does, then normalises each response into the flat record above. No browser, no HTML scraping β€” just clean, structured data.


πŸ“Œ Good to know

  • Scrape only public product data and respect Expedia's Terms of Service and robots policy.
  • For personal data, comply with GDPR/CCPA and applicable law β€” you are the data controller.
  • Fields can be null when Expedia doesn't expose them for a given record.

⭐ Found this useful?

Give the Expedia Hotel & Flight Scraper a star on Apify and check out my other apify-*-api-scraper actors.