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

# List Attributes

> Returns the brand-perception attributes (keywords) tracked for a website, such as 'Affordable' or 'Slow Support'. Athena extracts these from AI model responses. Use this to discover attribute ids, then POST /api/v1/attributes/cumulative for mention counts, or POST /api/v1/attributes/time-series for one attribute's trend. Attributes the customer has removed are not returned.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/attributes
openapi: 3.1.0
info:
  title: AthenaHQ API
  description: >-
    AthenaHQ API provides programmatic access to manage your websites and
    prompts for AI-powered content optimization.
  version: 1.0.0
  contact:
    email: support@athenahq.ai
servers:
  - url: https://api.athenahq.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Basics
    description: Core API operations for managing websites and prompts
  - name: Metrics
    description: Metrics and analytics endpoints for tracking AI visibility
  - name: Billing
    description: Billing and credits endpoints for managing usage
  - name: Team Management
    description: Endpoints for managing team members and invitations
  - name: Groups
    description: Endpoints for managing groups of websites
  - name: Content
    description: >-
      Endpoints for accessing Content Hub data — tabs, tracked URLs, and per-URL
      prompt breakdowns.
  - name: Pitch Workspace
    description: >-
      Endpoints for accessing pitch workspace reports — org-scoped pitch runs
      with competitors, prompts, attributes, and aggregate metrics.
  - name: Knowledge Base
    description: >-
      Endpoints for reading the brand Knowledge Base — approved brand facts and
      the pillars that organize them.
paths:
  /api/v1/attributes:
    get:
      tags:
        - Attributes
      summary: List Attributes
      description: >-
        Returns the brand-perception attributes (keywords) tracked for a
        website, such as 'Affordable' or 'Slow Support'. Athena extracts these
        from AI model responses. Use this to discover attribute ids, then POST
        /api/v1/attributes/cumulative for mention counts, or POST
        /api/v1/attributes/time-series for one attribute's trend. Attributes the
        customer has removed are not returned.
      operationId: listAttributes
      parameters:
        - name: website_id
          in: query
          description: The ID of the website to retrieve attributes for
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Successful response with list of attributes
          content:
            application/json:
              schema:
                type: object
                properties:
                  attributes:
                    type: array
                    items:
                      $ref: '#/components/schemas/Attribute'
                required:
                  - attributes
              example:
                attributes:
                  - id: 3fa85f64-5717-4562-b3fc-2c963f66afa6
                    name: Affordable
                    positive: true
                  - id: 9c858901-8a57-4791-81fe-4c455b099bc9
                    name: Slow Support
                    positive: false
        '400':
          description: Bad request - Invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - API key cannot access this website
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    Attribute:
      type: object
      description: >-
        A brand-perception attribute (keyword) Athena extracts from AI model
        responses, such as 'Affordable' or 'Slow Support'.
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          example: Affordable
        positive:
          type: boolean
          description: >-
            Whether the attribute reads as favourable. This describes the
            keyword itself, not any individual mention of it: 'Slow Support' is
            always positive=false, however a given response used it.
      required:
        - id
        - name
        - positive
    Error:
      type: object
      description: Error response object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message describing what went wrong
          example: Unauthorized
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. You can create one
        [here](https://app.athenahq.ai/organization?tab=api).

````