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

# Create Global Brand

> Create a brand and return its `id` — pass it as a product's `global_brand_id` when creating products. The returned `name` is the brand's canonical name and may differ slightly from the name you sent. This is separate from `POST /brands`, which creates a brand a project tracks for AI-visibility reporting.



## OpenAPI

````yaml https://api.peec.ai/customer/v1/openapi/json post /global-brands
openapi: 3.0.3
info:
  title: Peec AI Customer API
  description: Development documentation
  version: 1.0.0
  contact:
    name: Peec AI Team
    email: support@peec.ai
servers:
  - url: https://api.peec.ai/customer/v1
security: []
paths:
  /global-brands:
    post:
      tags:
        - Products
      summary: Create Global Brand
      description: >-
        Create a brand and return its `id` — pass it as a product's
        `global_brand_id` when creating products. The returned `name` is the
        brand's canonical name and may differ slightly from the name you sent.
        This is separate from `POST /brands`, which creates a brand a project
        tracks for AI-visibility reporting.
      operationId: postGlobal-brands
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                project_id:
                  description: Required if using a company api key
                  example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
                  type: string
                name:
                  type: string
                  minLength: 1
                  example: Nike
                  description: The brand name.
              required:
                - name
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                project_id:
                  description: Required if using a company api key
                  example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
                  type: string
                name:
                  type: string
                  minLength: 1
                  example: Nike
                  description: The brand name.
              required:
                - name
          multipart/form-data:
            schema:
              type: object
              properties:
                project_id:
                  description: Required if using a company api key
                  example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
                  type: string
                name:
                  type: string
                  minLength: 1
                  example: Nike
                  description: The brand name.
              required:
                - name
      responses:
        '200':
          description: The brand
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    pattern: >-
                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                    example: 019ecb6e-d030-7222-b531-b371fe9db583
                    description: >-
                      The global_brand_id — pass this as a product's brand when
                      creating products.
                  name:
                    type: string
                    example: Nike
                    description: >-
                      The brand's canonical name. May differ slightly from the
                      name you sent, since an existing brand is reused where one
                      is found.
                required:
                  - id
                  - name
                description: The brand
        '400':
          description: Response for status 400
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
      security:
        - APIKeyHeader: []
        - APIKeyQuery: []
        - BearerAuth: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    APIKeyQuery:
      type: apiKey
      in: query
      name: api_key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````