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

# AI Visibility

> See how your brand shows up across AI assistants — visibility, citations, competitors, and sentiment.

Track how often your brand appears in answers from AI assistants like ChatGPT, Perplexity, and Google's AI Overviews. This is the data behind the dashboard's **AI Visibility** tab — share of voice, prompt-level performance, citations, competitor comparisons, and sentiment.

<Note>
  You need **AI Visibility** set up for your brand with tracked prompts. Configure it from the **AI Visibility** dashboard.
</Note>

The overview groups its payload into sections — meta, cards, charts, brands, citations, platforms, competitors, the prompt table, and per-prompt detail. Use the `sections` and filter query parameters to fetch only the parts you need.

***

## Brand Summary

`GET /ai-tracker/visibility/brands/{name}`

Get the AI visibility summary for a single brand or competitor across the currently filtered dataset.

***

## Filter Options

`GET /ai-tracker/filter-options`

List the available platforms, countries, competitors, and prompt filters you can pass to the visibility endpoint.

***

## Models

`GET /ai-models`

List the AI models available for visibility tracking and whether each one is currently active.


## OpenAPI

````yaml GET /v3/ai-tracker/visibility
openapi: 3.0.0
info:
  title: SnowSEO API
  description: API documentation for SnowSEO
  version: 1.0.0
servers:
  - url: https://api.snowseo.com
    description: Production server
security: []
tags:
  - name: Keywords
    description: Keyword research and suggestion end-points
  - name: Onboarding
    description: Brand onboarding and strategy end-points
  - name: Brands
    description: Brand management end-points
  - name: Organizations
    description: Organization and member end-points
  - name: Integrations
    description: Google Search Console and other integrations
  - name: Utilities
    description: Common utility end-points like screenshots and uploads
externalDocs:
  url: https://snowseo.com/docs
  description: Find more info here
paths:
  /v3/ai-tracker/visibility:
    get:
      tags:
        - AI Tracker
      summary: Unified AI Visibility view (sectioned)
      description: >-
        Returns AI visibility dashboard sections for a team. Use sections to
        request a smaller payload, or promptId for one tracked prompt detail.
      operationId: getAiVisibility
      parameters:
        - schema:
            type: string
          in: query
          name: teamId
          required: false
        - schema:
            type: string
          in: query
          name: sections
          required: false
          description: >-
            Comma-separated sections:
            meta,cards,charts,brands,citations,platforms,competitors,overview,table,summaryCards,competitorMatrices,citationDetails,sentimentEvidence.
            Pass 'prompts' on its own for a minimal list ({id, prompt} for every
            tracked prompt) that ignores all scope filters and skips the
            visibility derivation.
        - schema:
            type: string
          in: query
          name: promptId
          required: false
          description: Tracked prompt ID for detail mode
        - schema:
            type: string
          in: query
          name: platform
          required: false
        - schema:
            type: string
          in: query
          name: competitor
          required: false
        - schema:
            type: string
          in: query
          name: country
          required: false
        - schema:
            type: string
          in: query
          name: startDate
          required: false
          description: YYYY-MM-DD
        - schema:
            type: string
          in: query
          name: endDate
          required: false
          description: YYYY-MM-DD
        - schema:
            type: integer
          in: query
          name: days
          required: false
        - schema:
            type: string
          in: query
          name: promptBrand
          required: false
        - schema:
            type: string
          in: query
          name: tracking
          required: false
        - schema:
            type: string
          in: query
          name: intent
          required: false
      responses:
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string

````