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

# List tracked websites

> Lists website domains and IDs actively tracked in Agent Analytics for a product.



## OpenAPI

````yaml /reporting-api.openapi.json get /v1/products/{productId}/websites
openapi: 3.1.0
info:
  title: Siteline Reporting API
  version: '1'
  description: >-
    Read-only access to Siteline product analytics, prompt performance,
    citations, and agent traffic.
servers:
  - url: https://api.siteline.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/products/{productId}/websites:
    get:
      tags:
        - Products
      summary: List tracked websites
      description: >-
        Lists website domains and IDs actively tracked in Agent Analytics for a
        product.
      operationId: listProductWebsites
      parameters:
        - $ref: '#/components/parameters/productId'
      responses:
        '200':
          description: Array of active websites.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Website'
              example:
                - domain: example.com
                  websiteId: site_123
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    productId:
      name: productId
      in: path
      required: true
      schema:
        type: integer
        example: 42
      description: Product ID returned by `GET /v1/products`.
  schemas:
    Website:
      type: object
      properties:
        domain:
          type: string
          example: example.com
        websiteId:
          type: string
          example: site_123
      required:
        - domain
        - websiteId
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
      required:
        - message
  responses:
    Unauthorized:
      description: API key or product authorization failed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            message: Unauthorized.
    InternalServerError:
      description: Unexpected server-side or upstream dependency failure.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            message: Internal server error.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Siteline public API key. Create one under **Team settings > Public API
        Key**.

````