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

# Recent mentions

> Region-scoped to the brand's primary active region by default; pass region/language to override.




## OpenAPI

````yaml /api-reference/public-openapi.json get /api/public/v1/brands/{slug}/mentions
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}/mentions:
    get:
      tags:
        - Public API
      summary: Recent mentions
      description: >
        Region-scoped to the brand's primary active region by default; pass
        region/language to override.
      parameters:
        - $ref: '#/components/parameters/BrandSlug'
        - name: sentiment
          in: query
          schema:
            type: string
            enum:
              - ''
              - pos
              - neu
              - neg
        - name: region
          in: query
          description: >-
            ISO-3166-1 alpha-2 region filter; defaults to the brand's primary
            active region.
          schema:
            type: string
        - name: language
          in: query
          description: >-
            ISO-639-1 language filter; defaults to the primary region's
            language.
          schema:
            type: string
      responses:
        '200':
          description: Mention list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  brand_slug:
                    type: string
                  mentions:
                    type: array
                    items:
                      $ref: '#/components/schemas/Mention'
                  count:
                    type: integer
      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:
    Mention:
      type: object
      properties:
        id:
          type: string
        engine:
          type: string
        prompt:
          type: string
        response_snippet:
          type: string
        rank:
          type: integer
        sentiment:
          type: string
          enum:
            - positive
            - neutral
            - negative
        cited_url:
          type: string
          format: uri
        seen_at:
          type: string
          format: date-time
  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.

````