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

# Get seller sandbox status

> Returns the organization's sandbox test wallet, the seller's sandbox readiness checks, the sandbox spend limits, and the available buyer-agent profiles.



## OpenAPI

````yaml https://api.zeroclick.io/openapi.json get /v1/sandbox/sellers/{sellerId}/status
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: Stripe Connect
  - name: Sandbox
  - name: Organizations
  - name: Users
paths:
  /v1/sandbox/sellers/{sellerId}/status:
    get:
      tags:
        - Sandbox
      summary: Get seller sandbox status
      description: >-
        Returns the organization's sandbox test wallet, the seller's sandbox
        readiness checks, the sandbox spend limits, and the available
        buyer-agent profiles.
      parameters:
        - schema:
            type: string
            minLength: 1
          in: path
          name: sellerId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  wallet:
                    type: object
                    properties:
                      address:
                        type: string
                      network:
                        type: string
                      usdcBalance:
                        type: string
                      ethBalance:
                        type: string
                    required:
                      - address
                      - network
                      - usdcBalance
                      - ethBalance
                    additionalProperties: false
                  receiver:
                    type: object
                    properties:
                      address:
                        type: string
                      usdcBalance:
                        type: string
                      recentTransfers:
                        type: array
                        items:
                          type: object
                          properties:
                            txHash:
                              type: string
                            explorerUrl:
                              type: string
                            amountUsd:
                              type: string
                            from:
                              type: string
                            at:
                              nullable: true
                              type: string
                          required:
                            - txHash
                            - explorerUrl
                            - amountUsd
                            - from
                            - at
                          additionalProperties: false
                    required:
                      - address
                      - usdcBalance
                      - recentTransfers
                    additionalProperties: false
                  readiness:
                    type: object
                    properties:
                      hasSigningSecret:
                        type: boolean
                      hasServices:
                        type: boolean
                      hasPlans:
                        type: boolean
                      upstreamBaseUrl:
                        type: string
                    required:
                      - hasSigningSecret
                      - hasServices
                      - hasPlans
                      - upstreamBaseUrl
                    additionalProperties: false
                  limits:
                    type: object
                    properties:
                      maxPaymentUsd:
                        type: string
                      maxSessionSpendUsd:
                        type: string
                    required:
                      - maxPaymentUsd
                      - maxSessionSpendUsd
                    additionalProperties: false
                  profiles:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        label:
                          type: string
                        caption:
                          type: string
                        starterPrompts:
                          type: array
                          items:
                            type: string
                        isDefault:
                          type: boolean
                      required:
                        - id
                        - label
                        - caption
                        - starterPrompts
                        - isDefault
                      additionalProperties: false
                required:
                  - wallet
                  - receiver
                  - readiness
                  - limits
                  - profiles
                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
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                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
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                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
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                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
                      - signing_secret_not_found
                      - insufficient_scope
                      - payg_price_not_whole_cents
                      - custom_domain_skip_unavailable
                      - active_stateful_accounts_exist
                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_...`.

````