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

# List Brands

> Get all available brands.



## OpenAPI

````yaml /openapi.json get /api/brands
openapi: 3.1.0
info:
  title: Legitmark Partner API
  description: Comprehensive partner integration API for Legitmark authentication platform
  version: 2.0.0
  contact:
    name: Legitmark Support
    email: support@legitmark.com
    url: https://legitmark.com
servers:
  - url: https://api.legitmark.com
    description: Production API
security:
  - BearerAuth: []
tags:
  - name: Service Requests
    description: Create, retrieve, and manage authentication service requests.
  - name: Media Management
    description: Upload images for service request authentication.
  - name: Taxonomy
    description: Browse categories, types, brands, models, and services to build requests.
paths:
  /api/brands:
    get:
      tags:
        - Taxonomy
      summary: List Brands
      description: Get all available brands.
      parameters:
        - name: page_size
          in: query
          description: Number of results per page
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
        - name: page_number
          in: query
          description: Page number
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: search_query
          in: query
          description: Search term for brand names
          schema:
            type: string
      responses:
        '200':
          description: Brands retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  rc_hit:
                    type: boolean
                    description: Indicates if the response was served from cache
                    example: true
                  rc_key:
                    type: string
                    description: Cache key used for this response
                    example: brands:abc123
                  message:
                    type: string
                    example: All the brands are fetched successfully.
                  brands:
                    type: array
                    items:
                      type: object
                      properties:
                        uuid:
                          type: string
                          format: uuid
                        name:
                          type: string
                        created-at:
                          type: string
                          format: date-time
                        updated-at:
                          type: string
                          format: date-time
                required:
                  - success
                  - message
                  - brands
              example:
                success: true
                rc_hit: true
                rc_key: brands:b3d8c2c047516490411d1b2d21695caf
                message: All the brands are fetched successfully.
                brands:
                  - uuid: 03e7eb07-5e1e-465d-92a6-228dcaa6b148
                    name: Air Jordan
                    created-at: '2023-08-02T15:47:07.000Z'
                    updated-at: '2023-08-02T15:47:07.000Z'
                  - uuid: e9c8dee6-3bd8-4045-953d-929f5d81cb82
                    name: New Balance
                    created-at: '2023-08-05T23:13:04.000Z'
                    updated-at: '2023-08-05T23:13:04.000Z'
                  - uuid: 95b54167-a23f-4ca0-81c0-8cf90a3619e2
                    name: Nike
                    created-at: '2023-08-05T23:13:11.000Z'
                    updated-at: '2023-08-05T23:13:11.000Z'
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token authentication. Use your API key in the format: Bearer
        leo_xxxxxxxx
      x-default: leo_your_api_key_here

````