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

# Seller website traffic

> The Website scope of agent traffic for one seller owned by the authenticated organization: qualified agent visits to the seller's own site (crawlers and credential probes excluded), how many read two or more pages, were shown a storefront link and reached the storefront, sessions per UTC day split by agent type, entry page and identity tier, where sessions start, the pages agents ask for that do not exist, and the website half of the flow diagram. Optional tier and agentType filters narrow the sessions.



## OpenAPI

````yaml https://api.zeroclick.io/openapi.json get /v1/analytics/sellers/{sellerId}/website
openapi: 3.0.0
info:
  title: ZeroClick API
  description: >-
    REST API for managing ZeroClick sellers, services, pricing, usage, and
    analytics. Authenticate with an API key from the ZeroClick dashboard.
  version: 1.0.0
servers:
  - url: https://api.zeroclick.io
security:
  - bearerAuth: []
tags:
  - name: API keys
  - name: Sellers
  - name: Services
  - name: Meters
  - name: Plans
  - name: Plan meter prices
  - name: Usage
  - name: Analytics
  - name: Agentify
  - name: Stripe Connect
  - name: Sandbox
  - name: Organizations
  - name: Users
paths:
  /v1/analytics/sellers/{sellerId}/website:
    get:
      tags:
        - Analytics
      summary: Seller website traffic
      description: >-
        The Website scope of agent traffic for one seller owned by the
        authenticated organization: qualified agent visits to the seller's own
        site (crawlers and credential probes excluded), how many read two or
        more pages, were shown a storefront link and reached the storefront,
        sessions per UTC day split by agent type, entry page and identity tier,
        where sessions start, the pages agents ask for that do not exist, and
        the website half of the flow diagram. Optional tier and agentType
        filters narrow the sessions.
      parameters:
        - schema:
            default: 30
            anyOf:
              - type: string
                enum:
                  - all
              - type: integer
                minimum: 1
                maximum: 365
          in: query
          name: days
          required: false
        - schema:
            type: string
            enum:
              - verified
              - unverified
          in: query
          name: tier
          required: false
        - schema:
            type: string
            enum:
              - ai_assistants
              - crawlers
              - browser_agents
              - automation
              - unclassified
          in: query
          name: agentType
          required: false
        - schema:
            type: string
            minLength: 1
          in: path
          name: sellerId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  website:
                    type: object
                    properties:
                      days:
                        type: number
                      configured:
                        type: boolean
                      previousWindowAvailable:
                        type: boolean
                      totals:
                        type: object
                        properties:
                          sessions:
                            type: number
                          browsed:
                            type: number
                          shownLink:
                            type: number
                          reached:
                            type: number
                          previous:
                            type: object
                            properties:
                              sessions:
                                type: number
                              browsed:
                                type: number
                              shownLink:
                                type: number
                              reached:
                                type: number
                            required:
                              - sessions
                              - browsed
                              - shownLink
                              - reached
                            additionalProperties: false
                        required:
                          - sessions
                          - browsed
                          - shownLink
                          - reached
                          - previous
                        additionalProperties: false
                      sessionsByDay:
                        type: object
                        properties:
                          total:
                            type: array
                            items:
                              type: object
                              properties:
                                date:
                                  type: string
                                sessions:
                                  type: number
                                browsed:
                                  type: number
                                shownLink:
                                  type: number
                                reached:
                                  type: number
                              required:
                                - date
                                - sessions
                                - browsed
                                - shownLink
                                - reached
                              additionalProperties: false
                          agentType:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                points:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      date:
                                        type: string
                                      sessions:
                                        type: number
                                      browsed:
                                        type: number
                                      shownLink:
                                        type: number
                                      reached:
                                        type: number
                                    required:
                                      - date
                                      - sessions
                                      - browsed
                                      - shownLink
                                      - reached
                                    additionalProperties: false
                              required:
                                - key
                                - label
                                - points
                              additionalProperties: false
                          entryPage:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                points:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      date:
                                        type: string
                                      sessions:
                                        type: number
                                      browsed:
                                        type: number
                                      shownLink:
                                        type: number
                                      reached:
                                        type: number
                                    required:
                                      - date
                                      - sessions
                                      - browsed
                                      - shownLink
                                      - reached
                                    additionalProperties: false
                              required:
                                - key
                                - label
                                - points
                              additionalProperties: false
                          tier:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                points:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      date:
                                        type: string
                                      sessions:
                                        type: number
                                      browsed:
                                        type: number
                                      shownLink:
                                        type: number
                                      reached:
                                        type: number
                                    required:
                                      - date
                                      - sessions
                                      - browsed
                                      - shownLink
                                      - reached
                                    additionalProperties: false
                              required:
                                - key
                                - label
                                - points
                              additionalProperties: false
                          platform:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                points:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      date:
                                        type: string
                                      sessions:
                                        type: number
                                      browsed:
                                        type: number
                                      shownLink:
                                        type: number
                                      reached:
                                        type: number
                                    required:
                                      - date
                                      - sessions
                                      - browsed
                                      - shownLink
                                      - reached
                                    additionalProperties: false
                              required:
                                - key
                                - label
                                - points
                              additionalProperties: false
                        required:
                          - total
                          - agentType
                          - entryPage
                          - tier
                          - platform
                        additionalProperties: false
                      entryPages:
                        type: array
                        items:
                          type: object
                          properties:
                            page:
                              type: string
                            sessions:
                              type: number
                            share:
                              type: number
                            missing:
                              type: boolean
                          required:
                            - page
                            - sessions
                            - share
                            - missing
                          additionalProperties: false
                      missingPages:
                        type: array
                        items:
                          type: object
                          properties:
                            page:
                              type: string
                            requests:
                              type: number
                            reached:
                              type: number
                          required:
                            - page
                            - requests
                            - reached
                          additionalProperties: false
                      agentTypes:
                        type: array
                        items:
                          type: object
                          properties:
                            bucket:
                              type: string
                            label:
                              type: string
                            sessions:
                              type: number
                            share:
                              type: number
                          required:
                            - bucket
                            - label
                            - sessions
                            - share
                          additionalProperties: false
                      verifiedSessions:
                        type: number
                      flow:
                        type: object
                        properties:
                          entries:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                missing:
                                  type: boolean
                                sessions:
                                  type: number
                                shownLink:
                                  type: number
                                reached:
                                  type: number
                              required:
                                - key
                                - label
                                - missing
                                - sessions
                                - shownLink
                                - reached
                              additionalProperties: false
                          shownLink:
                            type: number
                          noLink:
                            type: number
                          reached:
                            type: number
                        required:
                          - entries
                          - shownLink
                          - noLink
                          - reached
                        additionalProperties: false
                    required:
                      - days
                      - configured
                      - previousWindowAvailable
                      - totals
                      - sessionsByDay
                      - entryPages
                      - missingPages
                      - agentTypes
                      - verifiedSessions
                      - flow
                    additionalProperties: false
                required:
                  - website
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - organization_permission_required
                      - seller_not_found
                      - service_not_found
                      - meter_not_found
                      - plan_not_found
                      - plan_meter_price_not_found
                      - duplicate_slug
                      - duplicate_key
                      - duplicate_plan_meter_price
                      - duplicate_free_trial
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                      - free_trial_price_not_zero
                      - free_trial_interval_not_none
                      - included_credit_units_incomplete
                      - included_credit_units_without_credit
                      - claim_cap_requires_free_trial
                      - maximum_purchase_below_minimum
                      - buy_with_ai_not_available
                required:
                  - error
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - organization_permission_required
                      - seller_not_found
                      - service_not_found
                      - meter_not_found
                      - plan_not_found
                      - plan_meter_price_not_found
                      - duplicate_slug
                      - duplicate_key
                      - duplicate_plan_meter_price
                      - duplicate_free_trial
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                      - free_trial_price_not_zero
                      - free_trial_interval_not_none
                      - included_credit_units_incomplete
                      - included_credit_units_without_credit
                      - claim_cap_requires_free_trial
                      - maximum_purchase_below_minimum
                      - buy_with_ai_not_available
                required:
                  - error
                additionalProperties: false
        '409':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - organization_permission_required
                      - seller_not_found
                      - service_not_found
                      - meter_not_found
                      - plan_not_found
                      - plan_meter_price_not_found
                      - duplicate_slug
                      - duplicate_key
                      - duplicate_plan_meter_price
                      - duplicate_free_trial
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                      - free_trial_price_not_zero
                      - free_trial_interval_not_none
                      - included_credit_units_incomplete
                      - included_credit_units_without_credit
                      - claim_cap_requires_free_trial
                      - maximum_purchase_below_minimum
                      - buy_with_ai_not_available
                required:
                  - error
                additionalProperties: false
        '422':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - organization_permission_required
                      - seller_not_found
                      - service_not_found
                      - meter_not_found
                      - plan_not_found
                      - plan_meter_price_not_found
                      - duplicate_slug
                      - duplicate_key
                      - duplicate_plan_meter_price
                      - duplicate_free_trial
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                      - free_trial_price_not_zero
                      - free_trial_interval_not_none
                      - included_credit_units_incomplete
                      - included_credit_units_without_credit
                      - claim_cap_requires_free_trial
                      - maximum_purchase_below_minimum
                      - buy_with_ai_not_available
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key created in the ZeroClick dashboard under Settings → API keys.
        Keys start with `zc_`. Send them as `Authorization: Bearer zc_...`.

````