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

# List Referral Sources

> Every AI assistant Peec can attribute referral traffic to, whether or not this project has seen traffic from it — one row per referrer host, so an assistant reachable on several hosts appears once per host. Use `assistant` for the `assistants` filter on the referrals endpoint, and `source` to recognise a raw host in its results. The list is maintained by hand and reviewed quarterly, so a brand-new assistant may be missing.



## OpenAPI

````yaml https://api.peec.ai/customer/v1/openapi/json get /agent-analytics/google-analytics/list-referral-sources
openapi: 3.0.3
info:
  title: Peec AI Customer API
  description: Development documentation
  version: 1.0.0
  contact:
    name: Peec AI Team
    email: support@peec.ai
servers:
  - url: https://api.peec.ai/customer/v1
security: []
paths:
  /agent-analytics/google-analytics/list-referral-sources:
    get:
      tags:
        - Agent Analytics
      summary: List Referral Sources
      description: >-
        Every AI assistant Peec can attribute referral traffic to, whether or
        not this project has seen traffic from it — one row per referrer host,
        so an assistant reachable on several hosts appears once per host. Use
        `assistant` for the `assistants` filter on the referrals endpoint, and
        `source` to recognise a raw host in its results. The list is maintained
        by hand and reviewed quarterly, so a brand-new assistant may be missing.
      operationId: getAgent-analyticsGoogle-analyticsList-referral-sources
      parameters:
        - name: project_id
          in: query
          required: false
          schema:
            description: Required if using a company api key
            example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
            type: string
        - name: limit
          in: query
          required: false
          schema:
            default: 1000
            type: integer
            minimum: 1
            maximum: 10000
        - name: offset
          in: query
          required: false
          schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        source:
                          type: string
                          description: >-
                            The GA4 sessionSource host, as it appears in
                            results.
                          example: chatgpt.com
                        assistant:
                          example: ChatGPT
                          type: string
                        platform:
                          type: string
                          example: OpenAI
                      required:
                        - source
                        - assistant
                        - platform
                  total_count:
                    type: number
                    example: 78
                required:
                  - data
                  - total_count
                description: Success
      security:
        - APIKeyHeader: []
        - APIKeyQuery: []
        - BearerAuth: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    APIKeyQuery:
      type: apiKey
      in: query
      name: api_key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````