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

> List Chrono24 watch brands (manufacturers) with their numeric IDs and listing counts. Use the IDs as brand_ids in chrono24/watches/search.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/chrono24/brands
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/brands:
    post:
      tags:
        - /chrono24
      summary: /chrono24/brands
      description: >-
        List Chrono24 watch brands (manufacturers) with their numeric IDs and
        listing counts. Use the IDs as brand_ids in chrono24/watches/search.


        **Price:** 1 credit
      operationId: __api_chrono24_brands_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Chrono24BrandsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Chrono24Brand'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Chrono24BrandsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/Chrono24Domain'
          default: chrono24.com
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    Chrono24Brand:
      properties:
        '@type':
          type: string
          default: Chrono24Brand
        id:
          type: integer
        name:
          type: string
        watch_count:
          type: integer
          default: 0
      type: object
      required:
        - id
        - name
    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

````