> ## 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 flight itineraries as JSON

> Live Skyscanner itineraries for a route and date. Each option returns price, airline, departure/arrival times, duration, stop count and a booking deep link to the exact fare. One-way or return, any cabin class, any passenger count. Place names are resolved for you and the search runs on a warm, anti-bot-cleared session.



## OpenAPI

````yaml /api-reference/openapi.json post /flights/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:
  /flights/skyscanner-quotes:
    post:
      tags:
        - Plugins
      summary: Skyscanner flight itineraries as JSON
      description: >-
        Live Skyscanner itineraries for a route and date. Each option returns
        price, airline, departure/arrival times, duration, stop count and a
        booking deep link to the exact fare. One-way or return, any cabin class,
        any passenger count. Place names are resolved for you and the search
        runs on a warm, anti-bot-cleared session.
      operationId: skyscanner_flights_flights_skyscanner_quotes_post
      parameters:
        - name: origin
          in: query
          required: false
          schema:
            type: string
            title: Origin
        - name: dest
          in: query
          required: false
          schema:
            type: string
            title: Dest
        - name: origin_entity
          in: query
          required: false
          schema:
            type: string
            title: Origin Entity
        - name: dest_entity
          in: query
          required: false
          schema:
            type: string
            title: Dest Entity
        - name: origin_iata
          in: query
          required: false
          schema:
            type: string
            title: Origin Iata
        - name: dest_iata
          in: query
          required: false
          schema:
            type: string
            title: Dest Iata
        - name: depart_date
          in: query
          required: false
          schema:
            type: string
            title: Depart Date
        - name: return_date
          in: query
          required: false
          schema:
            type: string
            title: Return Date
        - name: adults
          in: query
          required: false
          schema:
            type: integer
            maximum: 9
            minimum: 1
            default: 1
            title: Adults
        - name: cabin
          in: query
          required: false
          schema:
            type: string
            default: economy
            title: Cabin
        - 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
      responses:
        '200':
          description: Itineraries 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.

````