# Scrape Fukuoka hotel prices from Trip.com

**Use case:** 

Scrape public Trip.com hotel listings in Fukuoka, Japan. Export names, prices, ratings, addresses, images, and hotel URLs for travel research.

## Input

```json
{
  "searchUrls": [
    {
      "url": "https://www.trip.com/hotels/fukuoka-hotels-list-248/"
    }
  ],
  "checkIn": "",
  "checkOut": "",
  "adults": 2,
  "rooms": 1,
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel name",
    "format": "text"
  },
  "hotelUrl": {
    "label": "Hotel URL",
    "format": "link"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "district": {
    "label": "District",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "guestRating": {
    "label": "Guest rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "taxesFeesText": {
    "label": "Taxes/fees",
    "format": "text"
  },
  "amenities": {
    "label": "Amenities",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Trip.com Hotels Scraper](https://apify.com/fetch_cat/trip-com-hotels-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/trip-com-hotels-scraper) to learn more, explore other use cases, and run it yourself.