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

# Get Seller Status

> Check if current user is an onboarded seller (read-only, no side effects).



## OpenAPI

````yaml /openapi.json get /v1/sellers/status
openapi: 3.1.0
info:
  title: AgentPowers API
  description: Paid marketplace for Claude Code skills and agents
  version: 0.1.0
servers:
  - url: https://api.agentpowers.ai
    description: Production
security: []
paths:
  /v1/sellers/status:
    get:
      tags:
        - sellers
      summary: Get Seller Status
      description: >-
        Check if current user is an onboarded seller (read-only, no side
        effects).
      operationId: get_seller_status_v1_sellers_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SellerStatusResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    SellerStatusResponse:
      properties:
        is_seller:
          type: boolean
          title: Is Seller
        charges_enabled:
          type: boolean
          title: Charges Enabled
        payouts_enabled:
          type: boolean
          title: Payouts Enabled
      type: object
      required:
        - is_seller
        - charges_enabled
        - payouts_enabled
      title: SellerStatusResponse
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Provide a Clerk JWT or a long-lived CLI token (prefix `ap_cli_`).  Pass
        as `Authorization: Bearer <token>`.

````