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

# Scrape AutoScout24 car listings

> Searches AutoScout24 (Europe's largest car marketplace) and returns the listings as JSON: `title`, `make`, `model`, `condition` (used / new), `price` (`raw` + `formatted` + `label`), `mileageKm`, `firstRegistration`, `fuel`, `transmission`, `powerKw`/`powerHp`, `engineCc`, `location` (country / zip / city / street), `seller` (type, name, phones) and `images`. Filter with `fuel`, `transmission`, `price_from`/`price_to`, `year_from`/`year_to`, `mileage_to`, `power_from`/`power_to` (`power_unit`) and `country`, sort with `sort`, and collect up to `max_results` across pages.



## OpenAPI

````yaml /api-reference/openapi.json post /vehicles/autoscout24
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: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /vehicles/autoscout24:
    post:
      tags:
        - Plugins
      summary: Scrape AutoScout24 car listings
      description: >-
        Searches AutoScout24 (Europe's largest car marketplace) and returns the
        listings as JSON: `title`, `make`, `model`, `condition` (used / new),
        `price` (`raw` + `formatted` + `label`), `mileageKm`,
        `firstRegistration`, `fuel`, `transmission`, `powerKw`/`powerHp`,
        `engineCc`, `location` (country / zip / city / street), `seller` (type,
        name, phones) and `images`. Filter with `fuel`, `transmission`,
        `price_from`/`price_to`, `year_from`/`year_to`, `mileage_to`,
        `power_from`/`power_to` (`power_unit`) and `country`, sort with `sort`,
        and collect up to `max_results` across pages.
      operationId: autoscout24_search_vehicles_autoscout24_post
      parameters:
        - name: make
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Make slug, e.g. 'bmw', 'volkswagen', 'audi'.
            title: Make
          description: Make slug, e.g. 'bmw', 'volkswagen', 'audi'.
        - name: model
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Model slug, e.g. 'x5', 'golf'. Requires `make`.
            title: Model
          description: Model slug, e.g. 'x5', 'golf'. Requires `make`.
        - name: fuel
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Fuel: gasoline, diesel, electric, hybrid, lpg, cng (or a raw
              AutoScout24 code).
            title: Fuel
          description: >-
            Fuel: gasoline, diesel, electric, hybrid, lpg, cng (or a raw
            AutoScout24 code).
        - name: transmission
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Transmission: automatic, manual, semi-automatic.'
            title: Transmission
          description: 'Transmission: automatic, manual, semi-automatic.'
        - name: price_from
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Minimum price in EUR.
            title: Price From
          description: Minimum price in EUR.
        - name: price_to
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Maximum price in EUR.
            title: Price To
          description: Maximum price in EUR.
        - name: year_from
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 1900
              - type: 'null'
            description: Earliest first-registration year.
            title: Year From
          description: Earliest first-registration year.
        - name: year_to
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 1900
              - type: 'null'
            description: Latest first-registration year.
            title: Year To
          description: Latest first-registration year.
        - name: mileage_to
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Maximum mileage in km.
            title: Mileage To
          description: Maximum mileage in km.
        - name: power_from
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Minimum power (unit set by `power_unit`).
            title: Power From
          description: Minimum power (unit set by `power_unit`).
        - name: power_to
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Maximum power (unit set by `power_unit`).
            title: Power To
          description: Maximum power (unit set by `power_unit`).
        - name: power_unit
          in: query
          required: false
          schema:
            type: string
            description: 'Power unit for the power filters: ''kw'' or ''hp''.'
            default: kw
            title: Power Unit
          description: 'Power unit for the power filters: ''kw'' or ''hp''.'
        - name: country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Seller country (ISO-2), e.g. 'DE', 'IT', 'NL'.
            title: Country
          description: Seller country (ISO-2), e.g. 'DE', 'IT', 'NL'.
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: >-
              Ordering: relevance, price_asc, price_desc, newest, mileage_asc,
              year_desc, power_desc.
            default: relevance
            title: Sort
          description: >-
            Ordering: relevance, price_asc, price_desc, newest, mileage_asc,
            year_desc, power_desc.
        - name: max_results
          in: query
          required: false
          schema:
            type: integer
            maximum: 400
            minimum: 1
            description: How many listings to collect across pages (~20 per page, max 400).
            default: 40
            title: Max Results
          description: How many listings to collect across pages (~20 per page, max 400).
        - name: page
          in: query
          required: false
          schema:
            type: integer
            maximum: 20
            minimum: 1
            description: 1-based results page to start from.
            default: 1
            title: Page
          description: 1-based results page to start from.
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Exit-IP country (ISO-2). Leave blank for a smart exit.
            title: Proxy Country
          description: Exit-IP country (ISO-2). Leave blank for a smart exit.
      responses:
        '200':
          description: JSON with a `listings` array plus totals.
          content:
            application/json:
              schema: {}
        '400':
          description: Invalid parameters.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by AutoScout24 or no results page returned.
        '504':
          description: Fetch timed out.
      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.

````