> ## 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.

# List Brand Perception Attribute Clusters

> The project's brand-perception attribute taxonomy: every attribute cluster with its id, label and member terms, plus the extracted attributes no cluster claims. Unlike the brand-attributes endpoint this is the editable grouping rather than the scored snapshot, so it also lists clusters that carry no score yet. Use it to resolve the `cluster_id` values the edit endpoint takes.



## OpenAPI

````yaml https://api.peec.ai/customer/v1/openapi/json get /brand-perception/attribute-clusters
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:
  /brand-perception/attribute-clusters:
    get:
      tags:
        - Brand Perception
      summary: List Brand Perception Attribute Clusters
      description: >-
        The project's brand-perception attribute taxonomy: every attribute
        cluster with its id, label and member terms, plus the extracted
        attributes no cluster claims. Unlike the brand-attributes endpoint this
        is the editable grouping rather than the scored snapshot, so it also
        lists clusters that carry no score yet. Use it to resolve the
        `cluster_id` values the edit endpoint takes.
      operationId: getBrand-perceptionAttribute-clusters
      parameters:
        - name: project_id
          in: query
          required: false
          schema:
            description: Required if using a company api key
            example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
            type: string
        - name: limit
          in: query
          required: false
          schema:
            default: 1000
            type: integer
            minimum: 1
            maximum: 10000
        - name: offset
          in: query
          required: false
          schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        cluster_id:
                          type: string
                          example: 0199a4c1-9f3e-7c21-9f0f-2c0a5d3b1e42
                          description: >-
                            Stable id of the cluster. Pass it to the edit
                            endpoint; it survives renames.
                        name:
                          type: string
                          example: Luxury
                          description: >-
                            The cluster's label — what the brand-perception
                            reads report as the attribute.
                        is_custom:
                          type: boolean
                          example: false
                          description: >-
                            True when a user added the cluster by hand rather
                            than the clustering pipeline producing it.
                        members:
                          type: array
                          items:
                            type: string
                          example:
                            - luxury
                            - prestige
                            - exclusivity
                          description: >-
                            Raw extracted attributes grouped under this cluster,
                            alphabetically sorted.
                      required:
                        - cluster_id
                        - name
                        - is_custom
                        - members
                    description: Clusters sorted by name.
                  total_count:
                    type: number
                    example: 12
                    description: Total number of clusters, ignoring pagination
                  unassigned:
                    type: array
                    items:
                      type: string
                    example:
                      - hand-built
                    description: >-
                      Extracted attributes that belong to no cluster yet.
                      Reassign one to give it a home. Not paginated.
                required:
                  - data
                  - total_count
                  - unassigned
                description: Success
      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

````