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

# List tracked coverage

> Coverage requires Sources access and the coverage feature to be enabled for the workspace. API keys remain workspace-bound. Delegated MCP connections require coverage:read. Includes uncited records. Active and archived collections are queried separately. Page pagination reflects current data and is not a frozen export snapshot.

Required scopes: `read`.


## OpenAPI

````yaml GET /api/v2/coverage
openapi: 3.1.1
info:
  title: chatobserver public API
  version: '2026-09-09'
  description: >-
    Track AI visibility, manage prompts, inspect collected answers and
    citations, and integrate workspace data with your own tools. Visibility
    endpoints use workspace API keys. Data endpoints use scoped service-account
    keys; spreadsheet client endpoints use authorised client sessions. See the
    authentication guide for each credential type.
  contact:
    name: chatobserver support
    url: https://chatobserver.com/contact
    email: support@chatobserver.com
servers:
  - url: https://app.chatobserver.com
    description: Production API
security:
  - WorkspaceKey: []
  - BearerKey: []
tags:
  - name: Workspace
    description: Validate access and list the workspace project and available platforms.
  - name: Prompts
    description: Create, schedule, organise, activate and retrieve tracked prompts.
  - name: Answers
    description: Retrieve collected AI answers, their analysis and visibility trends.
  - name: Brands
    description: Manage brands and compare their visibility in AI answers.
  - name: Sources and citations
    description: Analyse cited domains, pages and ownership across answers.
  - name: Visitor analytics
    description: Read website visitor and crawler analytics for the workspace.
  - name: Content opportunities
    description: Retrieve content-gap findings and recommendations for tracked prompts.
  - name: Usage
    description: Read workspace consumption and allowance summaries.
  - name: Data connections
    description: Discover authorised connections, source accounts and connector catalogues.
  - name: Data queries
    description: >-
      Create versioned queries, publish definitions and inspect integration
      contracts.
  - name: Data operations
    description: >-
      Execute, validate, cancel and inspect operations and page through result
      rows.
  - name: Data delivery
    description: Manage schedules, transfers, destinations and import workflows.
  - name: Data definitions
    description: Manage reusable definitions and their immutable versions.
  - name: Data webhooks
    description: >-
      Configure event delivery, inspect deliveries, replay events and rotate
      secrets.
  - name: Client authorisation
    description: Authorise spreadsheet clients using a user-approved challenge exchange.
  - name: Spreadsheet clients
    description: >-
      Access document-bound client sessions, queries, schedules, bindings and
      write claims.
  - name: AI visibility audits
    description: Create website visibility audits and retrieve their report links.
  - name: Version 1
    description: Integrate with the version 1 visibility and analytics endpoints.
  - name: Tracked coverage
    description: >-
      Track published coverage, maintain its metadata and inspect exact-page
      citation evidence with the same workspace feature access as the dashboard.
paths:
  /api/v2/coverage:
    get:
      tags:
        - Tracked coverage
      summary: List tracked coverage
      description: >-
        Coverage requires Sources access and the coverage feature to be enabled
        for the workspace. API keys remain workspace-bound. Delegated MCP
        connections require coverage:read. Includes uncited records. Active and
        archived collections are queried separately. Page pagination reflects
        current data and is not a frozen export snapshot.
      operationId: getV2Coverage
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100000
            default: 1
          description: >-
            One-based page; out-of-range pages clamp to the last available page.
            Page size is 20.
        - name: search
          in: query
          schema:
            type: string
            maxLength: 200
        - name: archived
          in: query
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
            default: 'false'
      responses:
        '200':
          description: Successful result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoverageListResponse'
        default:
          description: >-
            Request failed. Inspect the error code and request identifier; retry
            only when the failure is retryable.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      security:
        - WorkspaceKey: []
        - BearerKey: []
        - McpConnection: []
components:
  schemas:
    CoverageListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CoverageRecord'
        pageInfo:
          type: object
          properties:
            page:
              type: integer
              minimum: 1
            pageSize:
              type: integer
              enum:
                - 20
            total:
              type: integer
              minimum: 0
            hasMore:
              type: boolean
          required:
            - page
            - pageSize
            - total
            - hasMore
          additionalProperties: false
      required:
        - data
        - pageInfo
      additionalProperties: false
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            details: {}
          required:
            - code
            - message
        requestId:
          type: string
      required:
        - error
        - requestId
    CoverageRecord:
      type: object
      properties:
        url:
          type: string
          maxLength: 4096
          description: >-
            Published HTTP(S) page URL. The same page identity rules as the
            dashboard apply.
        title:
          type:
            - string
            - 'null'
          maxLength: 500
        publisher:
          type:
            - string
            - 'null'
          maxLength: 200
        publishedOn:
          type:
            - string
            - 'null'
          format: date
        medium:
          type: string
          enum:
            - article
            - interview
            - podcast
            - broadcast
            - other
        attribution:
          type: string
          enum:
            - unclassified
            - our_team
            - external
        notes:
          type:
            - string
            - 'null'
          maxLength: 4000
        id:
          type: string
          format: uuid
        version:
          type: integer
          minimum: 1
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        archivedAt:
          type:
            - string
            - 'null'
          format: date-time
      required:
        - url
        - title
        - publisher
        - publishedOn
        - medium
        - attribution
        - notes
        - id
        - version
        - createdAt
        - updatedAt
        - archivedAt
      additionalProperties: false
  securitySchemes:
    WorkspaceKey:
      type: apiKey
      in: header
      name: x-chatobserver-key
      description: >-
        A workspace API key. Data endpoints require a service-account key with
        the specified scopes.
    BearerKey:
      type: http
      scheme: bearer
      description: The workspace or service-account API key as a bearer token.
    McpConnection:
      type: http
      scheme: bearer
      description: >-
        Delegated application credential issued after Chatobserver account
        consent. Restricted to selected workspaces and explicitly supported MCP
        operations. The MCP server access token is a separate credential and
        cannot be used here.

````