# Hotel Review Schema Collector for Major Booking Sites

**Use case:** 

Collect structured review schema data from hotel booking sites like TripAdvisor, Booking.com, and Expedia for analysis and reporting.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.tripadvisor.com/Hotel_Review-g60763-d93390-Reviews-The_Plaza_Hotel-New_York_City_New_York.html"
    },
    {
      "url": "https://www.booking.com/hotel/us/the-plaza.html"
    },
    {
      "url": "https://www.expedia.com/New-York-Hotels.d178293.Travel-Guide-Hotels"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Page title",
    "format": "string"
  },
  "metaDescription": {
    "label": "Meta description",
    "format": "string"
  },
  "canonical": {
    "label": "Canonical URL",
    "format": "string"
  },
  "schemaTypes": {
    "label": "Schema types",
    "format": "array"
  },
  "jsonLd": {
    "label": "JSON-LD",
    "format": "array"
  },
  "openGraph": {
    "label": "Open Graph",
    "format": "object"
  },
  "twitter": {
    "label": "Twitter Card",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [JSON-LD Schema & Meta Tag Extractor](https://apify.com/logiover/json-ld-schema-meta-tag-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/json-ld-schema-meta-tag-extractor) to learn more, explore other use cases, and run it yourself.