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

# Create Brand

> Creates a new brand under your account.



## OpenAPI

````yaml POST /brand
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.mentionpilot.ai/api/v1
security:
  - bearerAuth: []
paths:
  /brand:
    post:
      summary: Create Brand
      description: Creates a new brand under your account.
      requestBody:
        description: Brand details
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - name
                - domain
              properties:
                name:
                  type: string
                  description: Name of the brand
                  example: MentionPilot
                domain:
                  type: string
                  description: Domain of the brand
                  example: mentionpilot.ai
      responses:
        '201':
          description: Brand created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  brand:
                    $ref: '#/components/schemas/Brand'
              example:
                success: true
                brand:
                  id: 155
                  name: MentionPilot
                  domain: mentionpilot.ai
                  created_at: '2026-05-07T10:00:00.000000+00:00'
        '400':
          description: Validation error — missing or invalid fields
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: Brand name is required
        '401':
          description: Unauthorized — invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden — brand-scoped API keys cannot create brands
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: Access denied
components:
  schemas:
    Brand:
      type: object
      properties:
        id:
          description: Unique identifier of the brand
          type: integer
          format: int64
          example: 144
        name:
          description: Name of the brand
          type: string
          example: Nike
        domain:
          description: Domain of the brand
          type: string
          example: nike.com
        created_at:
          description: Timestamp when the brand was created
          type: string
          format: date-time
          example: '2026-04-30T06:26:48.342023+00:00'
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: An error occurred
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````