# Scrape Hotels in Tokyo from Booking.com

**Use case:** 

Export Tokyo hotels in full detail: name, description, amenities, rooms, images, location lat/lng, JPY price and address, in CSV or JSON.

## Input

```json
{
  "search": "Tokyo, Japan",
  "startUrls": [],
  "checkIn": "+30 days",
  "checkOut": "+33 days",
  "adults": 2,
  "children": 0,
  "childrenAges": [],
  "rooms": 1,
  "propertyType": [
    "hotels"
  ],
  "starsCountFilter": [],
  "sortBy": "popularity",
  "currency": "JPY",
  "language": "en-us",
  "maxResults": 100,
  "includeRoomDetails": true
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingLabel": {
    "label": "Rating label",
    "format": "text"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "checkIn": {
    "label": "Check-in",
    "format": "text"
  },
  "checkOut": {
    "label": "Check-out",
    "format": "text"
  },
  "breakfast": {
    "label": "Breakfast",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "amenities": {
    "label": "Amenities",
    "format": "array"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "rooms": {
    "label": "Rooms",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "bookingUrl": {
    "label": "Booking link",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

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