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

# /autoscout24/dealers/listings

> Get the current inventory (listings) of an AutoScout24 dealer by slug (or dealer page URL). Returns listing cards with price, vehicle summary, location and seller. Sort by best match, price, registration, mileage or power.

**Price:** 20 credits per 20 results

**💡 AI Hint:** List a dealer's current vehicles by dealer slug (e.g. 'stad-m') or dealer page URL. Sort by best/price/first_registration/mileage/power with descending flag. count is required. Each result is a listing card.

**⚠️ Common errors:** 412: Dealer not found (well-formed but nonexistent dealer slug)



## OpenAPI

````yaml /openapi-filtered.json post /api/autoscout24/dealers/listings
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/autoscout24/dealers/listings:
    post:
      tags:
        - /autoscout24
      summary: /autoscout24/dealers/listings
      description: >-
        Get the current inventory (listings) of an AutoScout24 dealer by slug
        (or dealer page URL). Returns listing cards with price, vehicle summary,
        location and seller. Sort by best match, price, registration, mileage or
        power.


        **Price:** 20 credits per 20 results


        **💡 AI Hint:** List a dealer's current vehicles by dealer slug (e.g.
        'stad-m') or dealer page URL. Sort by
        best/price/first_registration/mileage/power with descending flag. count
        is required. Each result is a listing card.


        **⚠️ Common errors:** 412: Dealer not found (well-formed but nonexistent
        dealer slug)
      operationId: __api_autoscout24_dealers_listings_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutoScout24DealerListingsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AutoScout24Listing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AutoScout24DealerListingsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        dealer:
          type: string
          minLength: 1
          description: Dealer slug or a full AutoScout24 dealer page URL
          examples:
            - stad-m
            - https://www.autoscout24.com/dealerinfo/stad-m
        article_type:
          $ref: '#/components/schemas/AutoScout24ArticleType'
          description: Vehicle article type
          default: C
        sort:
          $ref: '#/components/schemas/AutoScout24Sort'
          description: Sort order
          default: standard
        descending:
          type: boolean
          description: Sort descending instead of ascending
          default: false
        count:
          type: integer
          minimum: 1
          description: Max number of results to return
      type: object
      required:
        - dealer
        - count
    AutoScout24Listing:
      properties:
        '@type':
          type: string
          default: AutoScout24Listing
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        make:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        model_group:
          anyOf:
            - type: string
            - type: 'null'
        variant:
          anyOf:
            - type: string
            - type: 'null'
        model_version:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        mileage_km:
          anyOf:
            - type: integer
            - type: 'null'
        first_registration:
          anyOf:
            - type: string
            - type: 'null'
        power_kw:
          anyOf:
            - type: integer
            - type: 'null'
        power_hp:
          anyOf:
            - type: integer
            - type: 'null'
        fuel:
          anyOf:
            - type: string
            - type: 'null'
        transmission:
          anyOf:
            - type: string
            - type: 'null'
        body_type:
          anyOf:
            - type: string
            - type: 'null'
        displacement_cc:
          anyOf:
            - type: integer
            - type: 'null'
        offer_type:
          anyOf:
            - type: string
            - type: 'null'
        is_new:
          type: boolean
          default: false
        is_damaged:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        location:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Location'
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/AutoScout24Seller'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AutoScout24ArticleType:
      type: string
      enum:
        - C
        - B
        - 'N'
        - X
        - L
    AutoScout24Sort:
      type: string
      enum:
        - standard
        - price
        - financerate
        - leasing_rate
        - make
        - year
        - mileage
        - power
        - age
        - distance
    AutoScout24Location:
      properties:
        '@type':
          type: string
          default: AutoScout24Location
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    AutoScout24Seller:
      properties:
        '@type':
          type: string
          default: AutoScout24Seller
        id:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        is_dealer:
          type: boolean
          default: false
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        contact_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        info_url:
          anyOf:
            - type: string
            - type: 'null'
        culture:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````