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

# Get brand by ID



## OpenAPI

````yaml /openapi/product-service.json get /v1/brands/{id}
openapi: 3.0.0
info:
  title: Asiko Product Service
  description: Product catalogue browsing, search, reviews, recommendations
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: products
    description: ''
  - name: categories
    description: ''
  - name: brands
    description: ''
  - name: reviews
    description: ''
  - name: recommendations
    description: ''
  - name: media
    description: ''
paths:
  /v1/brands/{id}:
    get:
      tags:
        - brands
      summary: Get brand by ID
      operationId: BrandsController_get
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````