> ## 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

> Get an AutoScout24 dealer by slug (or dealer page URL): name, address, contact details, ratings and reviews, opening hours, contact persons, additional services, logo and current inventory size.

**Price:** 10 credits

**💡 AI Hint:** Fetch one AutoScout24 dealer by slug (e.g. 'stad-m') or dealer page URL. Returns one item with name, address, phones, ratings/reviews, opening hours, contact persons and inventory size (listing_count).

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



## OpenAPI

````yaml /openapi-filtered.json post /api/autoscout24/dealers
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:
    post:
      tags:
        - /autoscout24
      summary: /autoscout24/dealers
      description: >-
        Get an AutoScout24 dealer by slug (or dealer page URL): name, address,
        contact details, ratings and reviews, opening hours, contact persons,
        additional services, logo and current inventory size.


        **Price:** 10 credits


        **💡 AI Hint:** Fetch one AutoScout24 dealer by slug (e.g. 'stad-m') or
        dealer page URL. Returns one item with name, address, phones,
        ratings/reviews, opening hours, contact persons and inventory size
        (listing_count).


        **⚠️ Common errors:** 412: Dealer not found (well-formed but nonexistent
        dealer slug)
      operationId: __api_autoscout24_dealers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutoScout24DealersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AutoScout24Dealer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AutoScout24DealersPayload:
      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
      type: object
      required:
        - dealer
    AutoScout24Dealer:
      properties:
        '@type':
          type: string
          default: AutoScout24Dealer
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        sell_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        culture:
          anyOf:
            - type: string
            - type: 'null'
        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'
        phones:
          items:
            type: string
          type: array
          default: []
        homepage_url:
          anyOf:
            - type: string
            - type: 'null'
        contact_name:
          anyOf:
            - type: string
            - type: 'null'
        about:
          anyOf:
            - type: string
            - type: 'null'
        imprint:
          anyOf:
            - type: string
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_average:
          anyOf:
            - type: number
            - type: 'null'
        rating_stars:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        recommend_percentage:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        hero_image:
          anyOf:
            - type: string
            - type: 'null'
        additional_services:
          items:
            type: string
          type: array
          default: []
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        branches:
          items:
            $ref: '#/components/schemas/AutoScout24Branch'
          type: array
          default: []
        opening_hours:
          items:
            $ref: '#/components/schemas/AutoScout24OpeningHours'
          type: array
          default: []
        contact_persons:
          items:
            $ref: '#/components/schemas/AutoScout24ContactPerson'
          type: array
          default: []
        reviews:
          items:
            $ref: '#/components/schemas/AutoScout24DealerReview'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AutoScout24Branch:
      properties:
        '@type':
          type: string
          default: AutoScout24Branch
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        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'
      type: object
    AutoScout24OpeningHours:
      properties:
        '@type':
          type: string
          default: AutoScout24OpeningHours
        department:
          anyOf:
            - type: string
            - type: 'null'
        timetable:
          items:
            items:
              type: integer
            type: array
          type: array
          default: []
      type: object
    AutoScout24ContactPerson:
      properties:
        '@type':
          type: string
          default: AutoScout24ContactPerson
        name:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AutoScout24DealerReview:
      properties:
        '@type':
          type: string
          default: AutoScout24DealerReview
        id:
          anyOf:
            - type: string
            - type: 'null'
        stars:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        reply:
          anyOf:
            - type: string
            - type: 'null'
        is_top_rating:
          type: boolean
          default: false
      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

````