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

> Get earnings summary for the current seller.



## OpenAPI

````yaml /openapi.json get /v1/sellers/earnings
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/earnings:
    get:
      tags:
        - sellers
      summary: Get Earnings
      description: Get earnings summary for the current seller.
      operationId: get_earnings_v1_sellers_earnings_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarningsResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    EarningsResponse:
      properties:
        total_earnings_cents:
          type: integer
          title: Total Earnings Cents
        total_sales:
          type: integer
          title: Total Sales
        currency:
          type: string
          title: Currency
        payout_delay_days:
          type: integer
          title: Payout Delay Days
        seller_tier:
          type: integer
          title: Seller Tier
        max_price_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Price Cents
        available_cents:
          type: integer
          title: Available Cents
          default: 0
        in_transit_cents:
          type: integer
          title: In Transit Cents
          default: 0
        paid_out_cents:
          type: integer
          title: Paid Out Cents
          default: 0
      type: object
      required:
        - total_earnings_cents
        - total_sales
        - currency
        - payout_delay_days
        - seller_tier
      title: EarningsResponse
  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>`.

````