Hotel price and availability monitoring
Use Expedia endpoints to turn hotel price and availability monitoring into repeatable API requests with documented inputs and JSON responses.
Turn Expedia's Stays, Flights, and Things To Do results into structured JSON — destination search, hotel listings with pricing and reviews, flight offers, and activity search, sourced from the same API the official mobile app uses. Credential-free.
Extract Expedia hotel search, hotel detail and reviews, flight search, and Things To Do activity search as structured JSON.
Endpoint families
4
Documented params
14
Examples
7
Live catalog snapshot
Active endpoints
7
Methods
POST
Required params
14
Schema refs
7
{
"platform": "Expedia",
"endpoint": "expedia-properties-search",
"method": "POST",
"path": "/expedia/properties/search",
"auth": "apiKey"
}Use cases
Extract Expedia hotel search, hotel detail and reviews, flight search, and Things To Do activity search as structured JSON.
Use Expedia endpoints to turn hotel price and availability monitoring into repeatable API requests with documented inputs and JSON responses.
Use Expedia endpoints to turn flight fare research into repeatable API requests with documented inputs and JSON responses.
Use Expedia endpoints to turn travel activity discovery into repeatable API requests with documented inputs and JSON responses.
Managed execution
Every figure below is read from the live Expedia endpoint catalog — 7 endpoints, 14 documented request parameters, and 7 published response schemas — the same catalog Docs and Playground run against.
7 documented Expedia endpoints, grouped into 4 request families — Properties, Activities and Flights, plus 1 more.
14 request parameters are documented across those Expedia endpoints, 14 of them required — the full input contract is public before you write any integration code.
7 of the 7 Expedia endpoints ship a recorded example response, and 7 carry a documented response schema — you can code against the real JSON before the first request.
Expedia endpoints document their error responses (400, 404, 429, 500 and 503) alongside the success schema, so a block, a rate limit, or a missing record comes back as a typed error rather than silently empty data.
7 hosted MCP tools back the Expedia endpoints, so an agent can call the same routes with the same parameters and the same JSON contract, with no custom glue.
Coverage map
These cards are generated from the active endpoint catalog, so the landing page reflects the same API surface used by Docs and Playground.
/expedia/properties/search
/expedia/activities/search
/expedia/flights/search
/expedia/locations/search
Endpoint catalog
/expedia/locations/searchReturns normalized destination/property typeahead suggestions (cities, airports, neighborhoods, hotels) for a free-text term.
Response notes
Each `data.items[]` entry's `region_id` (when present) can be passed as the `destination` context to `expedia-properties-search`/`expedia-properties-filters`/`expedia-activities-search`, which resolve free-text destinations through this same typeahead internally. Example response: ```json { "code": 200, "msg": "OK", "data": { "term": "Miami", "items": [ { "type": "SearchLocationBasicItem", "geo_type": "CITY", "primary_text": "Miami", "secondary_text": "Florida, United States", "location_full_name": "Miami, FL, United States", "region_id": "178289", "latitude": 25.77427, "longitude": -80.19366 } ] } } ```
MCP tool expedia_locations_search
/expedia/properties/searchReturns normalized Expedia Stays (hotel) search results for a free-text destination and date range.
Response notes
`data.region_id` identifies the resolved destination and can be reused directly by `expedia-properties-filters`. Each `data.properties[]` entry's `id` is the property id for `expedia-properties-detail`/`expedia-properties-reviews`. Price fields are kept as upstream-formatted display strings (e.g. `"$72 total"`) rather than parsed into a currency amount, since the upstream schema only exposes display-formatted price text on the search-results card. Example response: ```json { "code": 200, "msg": "OK", "data": { "destination": "Miami, Florida, United States of America", "region_id": "2297", "check_in": "2026-08-04", "check_out": "2026-08-05", "page": 1, "results_label": "300+ properties", "properties": [ { "id": "111893452", "name": "Kompose Boutique Hotel Miami Airport", "url": "https://www.expedia.com/Miami-Hotels-Kompose-Boutique-Hotel-Miami-Airport.h111893452.Hotel-Information", "review_score": 9.2, "review_count": 4460, "review_title": "Wonderful", "price": "$72 total", "strikeout_price": "$94", "nightly_price": "$53 nightly", "thumbnail_url": "https://images.trvl-media.com/lodging/112000000/111900000/111893500/111893452/5069ea21.jpg", "amenities": ["Pool"], "badges": ["VIP Access", "Member Price $22 off"] } ] } } ```
MCP tool expedia_properties_search
/expedia/properties/filtersReturns the sort and filter facets (amenities, star rating, neighborhood, nightly price range, sort options) available for a Stays search.
Response notes
Each `data.sections[].fields[]` entry's `type` is one of: `multi_select`, `single_select`, `dropdown`, `range`. For the selection types, `options[]` lists the selectable values; for `range`, `range_min`/`range_max` bound the field instead. Each option's `filter_id` (e.g. `amenities`, `star_rating`, `regionId`) and `value` are the upstream selection keys these facets represent -- exposed for reference; `expedia-properties-search` does not yet accept a filter-selection input. Example response: ```json { "code": 200, "msg": "OK", "data": { "destination": "Miami, Florida, United States of America", "region_id": "2297", "sections": [ { "title": "Filter by", "fields": [ { "type": "range", "label": "Nightly price", "range_min": 0, "range_max": 1000 }, { "type": "multi_select", "label": "Popular filters", "options": [ {"filter_id": "amenities", "value": "92", "label": "Airport shuttle included (92)"} ] } ] } ], "sort_options": [ {"filter_id": "sort", "value": "RECOMMENDED", "label": "Recommended for you", "selected": true} ] } } ```
MCP tool expedia_properties_filters
/expedia/properties/detailReturns a hotel's detail summary (name, star rating, address/coordinates, top amenities) for a known property id.
MCP tool expedia_properties_detail
/expedia/properties/reviewsReturns a hotel's overall rating and highlighted/recent guest reviews (reviewer, date, rating, message) for a known property id.
MCP tool expedia_properties_reviews
/expedia/flights/searchReturns normalized Expedia Flights search results (departing-leg offers) for an origin/destination IATA pair and date range.
Response notes
`data.offers[]` lists the *departing*-leg offers only, matching the app's own multi-step round-trip selection flow -- return-leg selection is not implemented. Example response: ```json { "code": 200, "msg": "OK", "data": { "origin": "JFK", "destination": "LAX", "departure_date": "2026-08-17", "return_date": "2026-08-18", "offers": [ { "airline": "JetBlue Airways", "route": "New York (JFK) - Los Angeles (LAX)", "departure_time": "7:30am", "arrival_time": "10:26am", "stops": 0, "duration_summary": "5h 56m • Nonstop", "price": "$551", "price_note": "Roundtrip per traveler" } ] } } ```
MCP tool expedia_flights_search
/expedia/activities/searchReturns normalized Expedia Things To Do (activities/tours) search results for a free-text destination and date range.
MCP tool expedia_activities_search
Related APIs
Travel & Hospitality
Build travel and lodging research workflows from structured Airbnb stay, room, availability, and review data.
Travel & Hospitality
Research hotels, restaurants, attractions, and destination pages from TripAdvisor with normalized listing and review endpoints.
Travel & Hospitality
Turn Booking.com's hotel, flight, and attractions surfaces into structured JSON — search results, hotel detail with rooms and photos, guest reviews, flight offers, and things-to-do listings, replayed directly against Booking.com's own persisted-query GraphQL and REST endpoints. Credential-free.
Company coverage
Expedia Group, Inc. · EXPE
Expedia is operated by Expedia Group, Inc. (EXPE). Crawlora's SEC endpoints take the same company's CIK, so filings, financials, insider transactions and 13F holdings come from the same API key as the Expedia endpoints above.
Other Expedia Group, Inc. platforms in the catalog
How to scrape Expedia
Expedia's Stays, Flights, and Things To Do surfaces run on a GraphQL API also used by its own mobile app. Crawlora's Expedia endpoints replay this directly and return destination suggestions, hotel search results, detail, reviews, flight offers, and activity listings as normalized JSON — no account or signed session required.
Search a free-text destination or property name to get a normalized location, or use an IATA code for flights.
Pass the destination and dates to /expedia/properties/search, /expedia/flights/search, or /expedia/activities/search, or a property id to /expedia/properties/detail or /expedia/properties/reviews.
Receive hotel listings with pricing, ratings, and amenities; flight offers with times, duration, and price; or activity listings with duration, reviews, and price.
Feed travel-price dashboards and research pipelines, or re-run searches on a schedule to track price and availability changes over time.
FAQ
Send a destination, date range, or property id to Crawlora's Expedia endpoints and get hotel, flight, or activity search results as structured JSON — no account. Collect public data and respect Expedia's terms.
Yes. /expedia/properties/search returns current nightly and total pricing per hotel — re-run it on a schedule to track price and availability changes over time as JSON.
Collecting publicly accessible hotel, flight, and activity data is generally permissible if you respect Expedia's terms of use, robots directives, rate limits, and applicable law. This is for public data you are authorized to collect.
Not a self-serve one. Expedia Group's Rapid API requires becoming an approved Expedia partner before you can even request an API key, and that key stays restricted to a development mode until your integration passes a site review — there's no instant, unaffiliated developer signup. Crawlora's Expedia endpoints return hotel, flight, and activity search and detail data as structured JSON with a single API key, no partner approval or site review required.