> ## Documentation Index
> Fetch the complete documentation index at: https://developers.scrapeunblocker.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Skyscanner hotel offers as JSON

> Live Skyscanner hotel results for a destination and stay dates, returned as structured JSON. Resolves the destination for you and runs the search on a warm, anti-bot-cleared session. `market` / `locale` / `currency` drive real pricing.



## OpenAPI

````yaml /api-reference/openapi.json post /hotels/skyscanner-quotes
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 1.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /hotels/skyscanner-quotes:
    post:
      tags:
        - Plugins
      summary: Skyscanner hotel offers as JSON
      description: >-
        Live Skyscanner hotel results for a destination and stay dates, returned
        as structured JSON. Resolves the destination for you and runs the search
        on a warm, anti-bot-cleared session. `market` / `locale` / `currency`
        drive real pricing.
      operationId: skyscanner_hotels_hotels_skyscanner_quotes_post
      parameters:
        - name: destination
          in: query
          required: false
          schema:
            type: string
            title: Destination
        - name: destination_entity
          in: query
          required: false
          schema:
            type: string
            title: Destination Entity
        - name: checkin
          in: query
          required: false
          schema:
            type: string
            title: Checkin
        - name: checkout
          in: query
          required: false
          schema:
            type: string
            title: Checkout
        - name: adults
          in: query
          required: false
          schema:
            type: integer
            maximum: 16
            minimum: 1
            default: 2
            title: Adults
        - name: rooms
          in: query
          required: false
          schema:
            type: integer
            maximum: 8
            minimum: 1
            default: 1
            title: Rooms
        - name: currency
          in: query
          required: false
          schema:
            type: string
            default: GBP
            title: Currency
        - name: market
          in: query
          required: false
          schema:
            type: string
            default: UK
            title: Market
        - name: locale
          in: query
          required: false
          schema:
            type: string
            default: en-GB
            title: Locale
        - name: proxy_country
          in: query
          required: false
          schema:
            type: string
            title: Proxy Country
        - name: max_polls
          in: query
          required: false
          schema:
            type: integer
            maximum: 20
            minimum: 1
            default: 8
            title: Max Polls
        - name: max_results
          in: query
          required: false
          schema:
            type: integer
            maximum: 300
            minimum: 1
            default: 30
            title: Max Results
      responses:
        '200':
          description: Hotel offers as JSON.
          content:
            application/json:
              schema: {}
        '400':
          description: Missing or invalid search parameters.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````