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

# List Targeting Attributes

> Catalog of panel targeting attributes (qualifications + their answer options).



## OpenAPI

````yaml /api-reference/openapi.json get /api/public/v1/targeting-attributes/
openapi: 3.1.0
info:
  title: User Intuition Public API
  description: >-
    ## Public Integration API


    Programmatic access to User Intuition for external integrators: manage
    studies, participants, interviews, reports, and panels.


    ### Authentication


    All endpoints require a Bearer token — either an API key (prefixed `ui_sk_`,
    created in the dashboard) or a dashboard JWT:


    ```

    Authorization: Bearer <ui_sk_… or JWT>

    ```


    ### Base URLs


    - **Production:** `https://api.userintuition.ai`

    - **Staging:** `https://staging.userintuition.ai`


    ### Support


    For API support, contact support@userintuition.ai
  version: 1.0.0
  contact:
    name: User Intuition Support
    email: support@userintuition.ai
servers:
  - url: https://api.userintuition.ai
    description: Production
  - url: https://staging.userintuition.ai
    description: Staging
security:
  - BearerAuth: []
paths:
  /api/public/v1/targeting-attributes/:
    get:
      tags:
        - public-targeting
      summary: List Targeting Attributes
      description: >-
        Catalog of panel targeting attributes (qualifications + their answer
        options).
      operationId: listTargetingAttributes
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/PublicTargetingAttributeCatalog'
                type: array
                title: Response Listtargetingattributes
components:
  schemas:
    PublicTargetingAttributeCatalog:
      properties:
        qualification_id:
          type: integer
          title: Qualification Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        type:
          anyOf:
            - type: string
            - type: 'null'
          title: Type
        question_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Question Text
        options:
          items:
            $ref: '#/components/schemas/PublicTargetingOptionCatalog'
          type: array
          title: Options
      type: object
      required:
        - qualification_id
      title: PublicTargetingAttributeCatalog
      description: One qualification in the targeting catalog (GET /targeting-attributes).
    PublicTargetingOptionCatalog:
      properties:
        option_id:
          type: integer
          title: Option Id
        text:
          anyOf:
            - type: string
            - type: 'null'
          title: Text
      type: object
      required:
        - option_id
      title: PublicTargetingOptionCatalog
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Authenticate with an API key (prefixed `ui_sk_`) or a JWT token from the
        dashboard.

````