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

# /chrono24/dealers

> Get a Chrono24 dealer profile by slug, numeric ID or profile URL: name, legal name, logo, address, contact, languages and rating breakdown.

**Price:** 1 credit

**⚠️ Common errors:** 412: Dealer not found



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/chrono24/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/chrono24/dealers:
    post:
      tags:
        - /chrono24
      summary: /chrono24/dealers
      description: >-
        Get a Chrono24 dealer profile by slug, numeric ID or profile URL: name,
        legal name, logo, address, contact, languages and rating breakdown.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Dealer not found
      operationId: __api_chrono24_dealers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Chrono24DealersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Chrono24Dealer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Chrono24DealersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/Chrono24Domain'
          default: chrono24.com
        dealer:
          type: string
          minLength: 1
      type: object
      required:
        - dealer
    Chrono24Dealer:
      properties:
        '@type':
          type: string
          default: Chrono24Dealer
        id:
          anyOf:
            - type: integer
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        legal_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        telephone:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_best:
          anyOf:
            - type: number
            - type: 'null'
        rating_worst:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    Chrono24Domain:
      type: string
      enum:
        - chrono24.com
        - chrono24.co.uk
        - chrono24.com.au
        - chrono24.ca
        - chrono24.in
        - chrono24.co.id
        - chrono24.my
        - chrono24.co.nz
        - chrono24.ph
        - chrono24.sg
        - chrono24.co.za
        - chrono24.fi
        - chrono24.co.th
        - chrono24.ae
        - chrono24.de
        - chrono24.fr
        - chrono24.it
        - chrono24.es
        - chrono24.nl
        - chrono24.at
        - chrono24.ch
        - chrono24.se
        - chrono24.pl
        - chrono24.com.br
        - chrono24.hk
        - chrono24.jp
        - chrono24.cn
    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

````