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

> Lists primary products authorized for the API key's team. Start here when you need product IDs for downstream calls. Competitor products linked through comparison data are excluded.



## OpenAPI

````yaml /reporting-api.openapi.json get /v1/products
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:
    get:
      tags:
        - Products
      summary: List products
      description: >-
        Lists primary products authorized for the API key's team. Start here
        when you need product IDs for downstream calls. Competitor products
        linked through comparison data are excluded.
      operationId: listProducts
      responses:
        '200':
          description: Array of authorized products.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Product'
              example:
                - id: 42
                  name: Example
                  website: https://example.com
                  domain: example.com
                  partnerWebsites:
                    - domain: example.com
                      websiteId: site_123
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    Product:
      type: object
      properties:
        id:
          type: integer
          example: 42
        name:
          type: string
          example: Example
        website:
          type: string
          format: uri
          example: https://example.com
        domain:
          type: string
          example: example.com
        partnerWebsites:
          type: array
          items:
            $ref: '#/components/schemas/PartnerWebsite'
      required:
        - id
        - name
        - website
        - domain
        - partnerWebsites
    PartnerWebsite:
      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**.

````