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

# Read the seller's agent-readiness score

> The newest readiness report for the seller's website, read from the readiness service. `scored` carries the grade, score and report link; `stale` means the scoring rubric has changed since the report was produced. `not_scanned`, `no_website` and `unavailable` are empty states, not errors.



## OpenAPI

````yaml https://api.zeroclick.io/openapi.json get /v1/sellers/{sellerId}/readiness
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/sellers/{sellerId}/readiness:
    get:
      tags:
        - Sellers
      summary: Read the seller's agent-readiness score
      description: >-
        The newest readiness report for the seller's website, read from the
        readiness service. `scored` carries the grade, score and report link;
        `stale` means the scoring rubric has changed since the report was
        produced. `not_scanned`, `no_website` and `unavailable` are empty
        states, not errors.
      parameters:
        - schema:
            type: string
            minLength: 1
          in: path
          name: sellerId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - scored
                      domain:
                        type: string
                      overallScore:
                        nullable: true
                        type: number
                      grade:
                        nullable: true
                        type: string
                      scannedAt:
                        type: string
                      rubricVersion:
                        nullable: true
                        type: string
                      stale:
                        type: boolean
                      reportUrl:
                        type: string
                      headline:
                        type: string
                      pillars:
                        type: object
                        additionalProperties:
                          nullable: true
                          type: number
                      funnel:
                        nullable: true
                        type: object
                        properties:
                          reached:
                            type: number
                          of:
                            type: number
                          stages:
                            type: array
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                name:
                                  type: string
                                question:
                                  type: string
                                verdict:
                                  type: string
                                  enum:
                                    - clear
                                    - friction
                                    - blocked
                                    - unmeasured
                                    - not_reached
                                blockers:
                                  type: array
                                  items:
                                    type: string
                              required:
                                - id
                                - name
                                - question
                                - verdict
                                - blockers
                              additionalProperties: false
                        required:
                          - reached
                          - of
                          - stages
                        additionalProperties: false
                      verdict:
                        nullable: true
                        type: object
                        properties:
                          outcome:
                            type: string
                            enum:
                              - purchased
                              - needs_you
                              - needs_your_approval
                              - no_route
                          canBuy:
                            type: boolean
                          summary:
                            type: string
                          nextStep:
                            nullable: true
                            type: string
                          blockers:
                            type: array
                            items:
                              type: string
                        required:
                          - outcome
                          - canBuy
                          - summary
                          - nextStep
                          - blockers
                        additionalProperties: false
                    required:
                      - status
                      - domain
                      - overallScore
                      - grade
                      - scannedAt
                      - rubricVersion
                      - stale
                      - reportUrl
                      - headline
                      - pillars
                      - funnel
                      - verdict
                    additionalProperties: false
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - not_scanned
                      domain:
                        type: string
                    required:
                      - status
                      - domain
                    additionalProperties: false
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - no_website
                      domain:
                        type: string
                        nullable: true
                        enum:
                          - null
                    required:
                      - status
                      - domain
                    additionalProperties: false
                  - type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - unavailable
                      domain:
                        nullable: true
                        type: string
                    required:
                      - status
                      - domain
                    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_...`.

````