> ## 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 agent traffic

> Session-grain agentic-traffic rollup for one seller owned by the authenticated organization: agent types, originating platforms, arrival channels, the browse-to-pay conversion floor, and agent-vs-human sessions per day. Optional tier and agentType filters narrow the agent rows (the human baseline is unaffected). Counts are floors - only visit-chain sessions are visible.



## OpenAPI

````yaml https://api.zeroclick.io/openapi.json get /v1/analytics/sellers/{sellerId}/traffic
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}/traffic:
    get:
      tags:
        - Analytics
      summary: Seller agent traffic
      description: >-
        Session-grain agentic-traffic rollup for one seller owned by the
        authenticated organization: agent types, originating platforms, arrival
        channels, the browse-to-pay conversion floor, and agent-vs-human
        sessions per day. Optional tier and agentType filters narrow the agent
        rows (the human baseline is unaffected). Counts are floors - only
        visit-chain sessions are visible.
      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:
                  traffic:
                    type: object
                    properties:
                      days:
                        type: number
                      marketingConfigured:
                        type: boolean
                      previousWindowAvailable:
                        type: boolean
                      outcomes:
                        type: object
                        properties:
                          journeys:
                            type: number
                          browsed:
                            type: number
                          quoted:
                            type: number
                          converted:
                            type: number
                          handedOff:
                            type: number
                          previous:
                            type: object
                            properties:
                              journeys:
                                type: number
                              browsed:
                                type: number
                              quoted:
                                type: number
                              converted:
                                type: number
                            required:
                              - journeys
                              - browsed
                              - quoted
                              - converted
                            additionalProperties: false
                        required:
                          - journeys
                          - browsed
                          - quoted
                          - converted
                          - handedOff
                          - previous
                        additionalProperties: false
                      journeysByDay:
                        type: object
                        properties:
                          total:
                            type: array
                            items:
                              type: object
                              properties:
                                date:
                                  type: string
                                journeys:
                                  type: number
                                browsed:
                                  type: number
                                quoted:
                                  type: number
                                converted:
                                  type: number
                              required:
                                - date
                                - journeys
                                - browsed
                                - quoted
                                - converted
                              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
                                      journeys:
                                        type: number
                                      browsed:
                                        type: number
                                      quoted:
                                        type: number
                                      converted:
                                        type: number
                                    required:
                                      - date
                                      - journeys
                                      - browsed
                                      - quoted
                                      - converted
                                    additionalProperties: false
                              required:
                                - key
                                - label
                                - points
                              additionalProperties: false
                          arrival:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                points:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      date:
                                        type: string
                                      journeys:
                                        type: number
                                      browsed:
                                        type: number
                                      quoted:
                                        type: number
                                      converted:
                                        type: number
                                    required:
                                      - date
                                      - journeys
                                      - browsed
                                      - quoted
                                      - converted
                                    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
                                      journeys:
                                        type: number
                                      browsed:
                                        type: number
                                      quoted:
                                        type: number
                                      converted:
                                        type: number
                                    required:
                                      - date
                                      - journeys
                                      - browsed
                                      - quoted
                                      - converted
                                    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
                                      journeys:
                                        type: number
                                      browsed:
                                        type: number
                                      quoted:
                                        type: number
                                      converted:
                                        type: number
                                    required:
                                      - date
                                      - journeys
                                      - browsed
                                      - quoted
                                      - converted
                                    additionalProperties: false
                              required:
                                - key
                                - label
                                - points
                              additionalProperties: false
                        required:
                          - total
                          - agentType
                          - arrival
                          - tier
                          - platform
                        additionalProperties: false
                      flow:
                        type: object
                        properties:
                          entries:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                label:
                                  type: string
                                journeys:
                                  type: number
                                outcomes:
                                  type: object
                                  properties:
                                    converted_paid:
                                      type: number
                                    converted_trial:
                                      type: number
                                    handed_off:
                                      type: number
                                    quoted:
                                      type: number
                                    browsed:
                                      type: number
                                    left:
                                      type: number
                                  required:
                                    - converted_paid
                                    - converted_trial
                                    - handed_off
                                    - quoted
                                    - browsed
                                    - left
                                  additionalProperties: false
                              required:
                                - key
                                - label
                                - journeys
                                - outcomes
                              additionalProperties: false
                          outcomes:
                            type: array
                            items:
                              type: object
                              properties:
                                key:
                                  type: string
                                  enum:
                                    - converted_paid
                                    - converted_trial
                                    - handed_off
                                    - quoted
                                    - browsed
                                    - left
                                label:
                                  type: string
                                journeys:
                                  type: number
                              required:
                                - key
                                - label
                                - journeys
                              additionalProperties: false
                        required:
                          - entries
                          - outcomes
                        additionalProperties: false
                      coverage:
                        type: object
                        properties:
                          payments:
                            type: number
                          paymentsWithJourney:
                            type: number
                          revenueUsd:
                            type: string
                          revenueWithJourneyUsd:
                            type: string
                        required:
                          - payments
                          - paymentsWithJourney
                          - revenueUsd
                          - revenueWithJourneyUsd
                        additionalProperties: false
                      agentSessions:
                        type: number
                      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
                      platforms:
                        type: array
                        items:
                          type: object
                          properties:
                            platform:
                              type: string
                            sessions:
                              type: number
                            share:
                              type: number
                          required:
                            - platform
                            - sessions
                            - share
                          additionalProperties: false
                      arrival:
                        type: array
                        items:
                          type: object
                          properties:
                            channel:
                              type: string
                            sessions:
                              type: number
                            share:
                              type: number
                          required:
                            - channel
                            - sessions
                            - share
                          additionalProperties: false
                      conversion:
                        type: object
                        properties:
                          browsingSessions:
                            type: number
                          payingSessions:
                            type: number
                          droppedShare:
                            type: number
                        required:
                          - browsingSessions
                          - payingSessions
                          - droppedShare
                        additionalProperties: false
                      previous:
                        type: object
                        properties:
                          agentSessions:
                            type: number
                          humanSessions:
                            type: number
                          conversionRate:
                            nullable: true
                            type: number
                          droppedShare:
                            type: number
                        required:
                          - agentSessions
                          - humanSessions
                          - conversionRate
                          - droppedShare
                        additionalProperties: false
                      agentVsHumanByDay:
                        type: array
                        items:
                          type: object
                          properties:
                            date:
                              type: string
                            agentSessions:
                              type: number
                            humanSessions:
                              type: number
                          required:
                            - date
                            - agentSessions
                            - humanSessions
                          additionalProperties: false
                    required:
                      - days
                      - marketingConfigured
                      - previousWindowAvailable
                      - outcomes
                      - journeysByDay
                      - flow
                      - coverage
                      - agentSessions
                      - agentTypes
                      - platforms
                      - arrival
                      - conversion
                      - previous
                      - agentVsHumanByDay
                    additionalProperties: false
                required:
                  - traffic
                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
                      - auto_renew_incompatible_plan
                      - auto_top_up_incompatible_plan
                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
                      - auto_renew_incompatible_plan
                      - auto_top_up_incompatible_plan
                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
                      - auto_renew_incompatible_plan
                      - auto_top_up_incompatible_plan
                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
                      - auto_renew_incompatible_plan
                      - auto_top_up_incompatible_plan
                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_...`.

````