# Scrape Expedia Hotel Availability – Expedia Availability API

**Use case:** 

Scrape Expedia hotel availability, rooms, and rates for specific dates to monitor booking availability and inventory.

## Input

```json
{
  "scrapeType": "HOTEL_SEARCH",
  "locationSearch": "Paris, France",
  "locationLimit": 5,
  "regionId": "2734",
  "checkIn": "2026-08-15",
  "checkOut": "2026-08-20",
  "adults": 2,
  "childrenAges": [
    5,
    10
  ],
  "maxResults": 50,
  "hotelFilters": {
    "sort": "RECOMMENDED",
    "star_ratings": [
      4,
      5
    ],
    "price_min": 50,
    "price_max": 300,
    "guest_rating_min": 70,
    "amenities": [
      "WIFI",
      "POOL"
    ],
    "property_types": [
      "HOTEL"
    ],
    "meal_plans": [],
    "payment_type": "FREE_CANCELLATION"
  },
  "propertyId": "16786",
  "currency": "USD",
  "page": 0,
  "pageSize": 10,
  "sortBy": "",
  "searchTerm": "",
  "travelerType": "",
  "pickupSearchTerm": "New York, New York, United States of America",
  "pickupDatetime": {
    "day": 15,
    "month": 8,
    "year": 2026,
    "hour": 10,
    "minute": 0
  },
  "dropoffSearchTerm": "New York, New York, United States of America",
  "dropoffDatetime": {
    "day": 20,
    "month": 8,
    "year": 2026,
    "hour": 10,
    "minute": 0
  },
  "transferMode": "RENTAL",
  "carFilters": {
    "sort": "RECOMMENDED",
    "car_types": [
      "midsize",
      "compact"
    ],
    "vendors": [
      "ZE",
      "ZI"
    ],
    "price_range": "75-100",
    "capacity": "TWO_TO_FIVE",
    "specs": [
      "AUTO_TRANSMISSION"
    ],
    "radius_km": 10
  },
  "carOfferToken": "AQh3XDzUb4Yaw4cMGaeYnjj7avjCnI7in9MF41jMKsvokMLK..."
}
```

## Output

```json
{
  "scrape_type": {
    "label": "Type",
    "format": "text"
  },
  "property_id": {
    "label": "Property ID",
    "format": "text"
  },
  "name": {
    "label": "Hotel",
    "format": "text"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "price_nightly": {
    "label": "Nightly",
    "format": "text"
  },
  "price_total": {
    "label": "Total",
    "format": "text"
  },
  "price_strikeout": {
    "label": "Was",
    "format": "text"
  },
  "price_for_nights": {
    "label": "Stay",
    "format": "text"
  },
  "price_dates": {
    "label": "Dates",
    "format": "text"
  },
  "guest_rating": {
    "label": "Rating",
    "format": "text"
  },
  "guest_rating_text": {
    "label": "Rating text",
    "format": "text"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "urgency_message": {
    "label": "Urgency",
    "format": "text"
  },
  "cancellation_policy": {
    "label": "Cancellation",
    "format": "array"
  },
  "badges": {
    "label": "Badges",
    "format": "array"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "book_on_expedia": {
    "label": "Book on Expedia",
    "format": "link"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "is_metadata": {
    "label": "Metadata",
    "format": "boolean"
  },
  "total_results": {
    "label": "Total results",
    "format": "number"
  },
  "available_filters": {
    "label": "Available filters",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Expedia Data](https://apify.com/fingolfin/expedia-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fingolfin/expedia-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fingolfin/expedia-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
