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

# Get brand



## OpenAPI

````yaml https://app.mavel.ai/api/v1/openapi.json get /brands/{brand_id}
openapi: 3.0.3
info:
  title: Mavel REST API
  version: v1
  description: >-
    REST API for Mavel. Authentication: pass `X-API-Key: <key>` header.
    Rate-limited at 200 req/min/project. Plan tier: Enterprise (or Scale+ on
    Agency tier).
servers:
  - url: /api/v1
security:
  - ApiKeyAuth: []
paths:
  /brands/{brand_id}:
    get:
      tags:
        - Brands
      summary: Get brand
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: brand_id
          in: path
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  brand_id:
                    type: string
                    format: uuid
                  display_name:
                    type: string
                  tracked_name:
                    type: string
                  aliases:
                    type: array
                    items:
                      type: string
                  domains:
                    type: array
                    items:
                      type: string
                    description: >-
                      Hostname-normalized (RFC-0032 stage 8):
                      scheme/path/query/port stripped before storage — e.g.
                      "https://zoho.com/cliq?x=1" is stored as "zoho.com". A
                      domain with no extractable hostname is rejected at write
                      time.
                  color:
                    type: string
                  parent_brand_id:
                    type: string
                    nullable: true
                    format: uuid
                    description: >-
                      Set for sub-brand support (this brand rolls up under
                      another tracked brand); null when this brand has no
                      parent.
                  is_own:
                    type: boolean
                  created_at:
                    type: string
                    format: date-time
                required:
                  - brand_id
                  - display_name
                  - tracked_name
                  - aliases
                  - domains
                  - color
                  - parent_brand_id
                  - is_own
                  - created_at
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````