> ## 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 car hire quotes as JSON

> Live Skyscanner car-hire results for a pickup/dropoff and date range, returned as structured JSON. Resolves free-text place names 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 /carhire/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:
  /carhire/skyscanner-quotes:
    post:
      tags:
        - Plugins
      summary: Skyscanner car hire quotes as JSON
      description: >-
        Live Skyscanner car-hire results for a pickup/dropoff and date range,
        returned as structured JSON. Resolves free-text place names for you and
        runs the search on a warm, anti-bot-cleared session. `market` / `locale`
        / `currency` drive real pricing.
      operationId: skyscanner_carhire_quotes_carhire_skyscanner_quotes_post
      parameters:
        - name: url
          in: query
          required: false
          schema:
            type: string
            title: Url
        - name: host
          in: query
          required: false
          schema:
            type: string
            default: www.skyscanner.net
            title: Host
        - name: market
          in: query
          required: false
          schema:
            type: string
            title: Market
        - name: locale
          in: query
          required: false
          schema:
            type: string
            title: Locale
        - name: currency
          in: query
          required: false
          schema:
            type: string
            title: Currency
        - name: driver_age
          in: query
          required: false
          schema:
            type: integer
            title: Driver Age
        - name: pickup_entity
          in: query
          required: false
          schema:
            type: string
            title: Pickup Entity
        - name: dropoff_entity
          in: query
          required: false
          schema:
            type: string
            title: Dropoff Entity
        - name: pickup
          in: query
          required: false
          schema:
            type: string
            title: Pickup
        - name: dropoff
          in: query
          required: false
          schema:
            type: string
            title: Dropoff
        - name: pickup_datetime
          in: query
          required: false
          schema:
            type: string
            title: Pickup Datetime
        - name: dropoff_datetime
          in: query
          required: false
          schema:
            type: string
            title: Dropoff Datetime
        - name: proxy_country
          in: query
          required: false
          schema:
            type: string
            title: Proxy Country
        - name: warmup_url
          in: query
          required: false
          schema:
            type: string
            title: Warmup Url
        - name: max_polls
          in: query
          required: false
          schema:
            type: integer
            maximum: 20
            minimum: 1
            default: 8
            title: Max Polls
        - name: poll_interval
          in: query
          required: false
          schema:
            type: number
            maximum: 10
            minimum: 0
            default: 2
            title: Poll Interval
        - name: settle
          in: query
          required: false
          schema:
            type: number
            maximum: 20
            minimum: 0
            default: 5
            title: Settle
      responses:
        '200':
          description: Car-hire quotes 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.

````