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

# List Brands

> Returns the project brands. Use the returned `uuid` values in `brands` reporting filters.



## OpenAPI

````yaml /openapi.json get /api/v1/projects/{project}/brands
openapi: 3.1.0
info:
  title: Surfacd Public API
  version: 1.0.0
  description: >-
    Public API for Surfacd. Team-scoped operations live under
    `/api/v1/team/...`; project collections live under `/api/v1/projects`;
    project-scoped operations live under `/api/v1/projects/{project}/...`. All
    endpoints require a Bearer team API key created in Team Settings. The API
    key selects the team for team-level and collection endpoints.
servers:
  - url: https://app.surfacd.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Projects
    description: Project management endpoints. Reads only in this version.
  - name: Prompts
    description: Prompt management endpoints. Reads only in this version.
  - name: Team
    description: Team settings and plan details for the current team.
  - name: Reporting
    description: >-
      Read-only reporting endpoints for projects (brand rankings, mentions,
      visibility, matrix analysis, source data).
  - name: Reference
    description: Reference data used by create, update, and reporting filters.
  - name: Tags
    description: Project tag management endpoints.
paths:
  /api/v1/projects/{project}/brands:
    parameters:
      - $ref: '#/components/parameters/ProjectUuid'
    get:
      tags:
        - Reference
      summary: List Brands
      description: >-
        Returns the project brands. Use the returned `uuid` values in `brands`
        reporting filters.
      operationId: v1ProjectsBrandsIndex
      responses:
        '200':
          description: Project brands.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ProjectBrand'
                required:
                  - data
        '404':
          description: Project not found in the current team.
components:
  parameters:
    ProjectUuid:
      name: project
      in: path
      required: true
      description: Project UUID.
      schema:
        type: string
        format: uuid
  schemas:
    ProjectBrand:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        name:
          type: string
        domain:
          type:
            - string
            - 'null'
        type:
          $ref: '#/components/schemas/BrandType'
        brand_aliases:
          type: array
          items:
            type: string
      required:
        - uuid
        - name
        - domain
        - type
        - brand_aliases
    BrandType:
      type: integer
      enum:
        - 0
        - 1
        - 2
      description: >-
        `0` = Standard, `1` = Primary (the project's own brand), `2` =
        Competitor.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token
      description: >-
        Team API key created in Team Settings. Use it with URLs for the same
        team.

````