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

> The industries the project has brand-perception runs for. Each run is dispatched for one industry, so a project that changed its industry has data for several — pass a `name` from here as the `industry` filter on the attribute-rankings and competitive-breakdown endpoints to read one of them. An empty result means no run has been dispatched yet.



## OpenAPI

````yaml https://api.peec.ai/customer/v1/openapi/json get /brand-perception/industries
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/industries:
    get:
      tags:
        - Brand Perception
      summary: List Brand Perception Industries
      description: >-
        The industries the project has brand-perception runs for. Each run is
        dispatched for one industry, so a project that changed its industry has
        data for several — pass a `name` from here as the `industry` filter on
        the attribute-rankings and competitive-breakdown endpoints to read one
        of them. An empty result means no run has been dispatched yet.
      operationId: getBrand-perceptionIndustries
      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:
                        name:
                          type: string
                          example: Luxury Sports Cars
                          description: >-
                            Pass this value as the `industry` filter on the
                            other brand-perception endpoints.
                        is_default:
                          type: boolean
                          example: true
                          description: >-
                            True for the industry the other endpoints read when
                            no `industry` filter is passed: the one with the
                            most recent completed run, or the most recent run of
                            any status while none has completed.
                        last_run_started_at:
                          type: string
                          example: '2025-09-22'
                          description: >-
                            When the industry's most recent brand-perception run
                            was dispatched.
                        last_run_completed_at:
                          nullable: true
                          example: '2025-09-23'
                          description: >-
                            When the industry's most recent completed run
                            finished; null while no run has completed and the
                            data is still partial.
                          type: string
                      required:
                        - name
                        - is_default
                        - last_run_started_at
                        - last_run_completed_at
                    description: Industries sorted most-recently-started first.
                  total_count:
                    type: number
                    example: 2
                    description: Total number of industries, ignoring pagination
                required:
                  - data
                  - total_count
                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

````