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

# List monitored prompts

> List monitored prompts (bearer-authed)



## OpenAPI

````yaml /api-reference/public-openapi.json get /api/public/v1/brands/{slug}/prompts
openapi: 3.1.0
info:
  title: FixAEO Customer API
  version: 2026.05.23
  description: >-
    Bearer-authed read API over your FixAEO workspace. Create a key in Settings,
    then send it as `Authorization: Bearer <key>`. Every route is scoped to the
    key's own account.


    Generated from the server's OpenAPI spec — see
    scripts/build-public-openapi.py.
servers:
  - url: https://api.fixaeo.com
security:
  - bearerAuth: []
paths:
  /api/public/v1/brands/{slug}/prompts:
    get:
      tags:
        - Public API
      summary: List monitored prompts
      description: List monitored prompts (bearer-authed)
      parameters:
        - $ref: '#/components/parameters/BrandSlug'
      responses:
        '200':
          description: Prompts.
          content:
            application/json:
              schema:
                type: object
                properties:
                  prompts:
                    type: array
                    items:
                      $ref: '#/components/schemas/Prompt'
                  count:
                    type: integer
                    description: Active prompts on THIS brand.
                  used_total:
                    type: integer
                    description: >
                      Active prompts across ALL the user's brands — the shared
                      pool the plan limit is enforced against.
                  limit:
                    type: integer
                    description: Plan prompt limit (shared across all brands).
      security:
        - bearerAuth: []
components:
  parameters:
    BrandSlug:
      name: slug
      in: path
      required: true
      schema:
        type: string
        pattern: ^[a-z0-9-]+$
      description: URL-safe brand identifier (lowercased, hyphenated).
      example: openai
  schemas:
    Prompt:
      type: object
      properties:
        id:
          type: string
          format: uuid
        prompt:
          type: string
        topic:
          type: string
        intent:
          type: string
          enum:
            - informational
            - commercial
            - transactional
          description: >
            Auto-assigned purchase-intent class (deterministic keyword
            classifier). Always present on prompt-list reads — persisted at
            insert, or classified on the fly for rows predating the column.
        created_at:
          type: string
          format: date-time
        source:
          type: string
          enum:
            - ''
            - manual
            - gsc
          description: >
            Provenance. "gsc" = accepted from a Search Console prompt
            suggestion; "manual"/"" = user-typed or onboarding.
        source_query:
          type: string
          description: Originating organic Google query when source="gsc".
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: fxa_
      description: |
        API keys generated via `POST /api/v1/me/api-keys`. Format:
        `Authorization: Bearer fxa_<32-char-secret>`. Only accepted on
        `/api/public/v1/*`. Cookie auth is rejected on that surface.

````