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

# List Payouts

> List payout history for the current seller via Stripe Connect.



## OpenAPI

````yaml /openapi.json get /v1/sellers/payouts
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/payouts:
    get:
      tags:
        - sellers
      summary: List Payouts
      description: List payout history for the current seller via Stripe Connect.
      operationId: list_payouts_v1_sellers_payouts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/PayoutItem'
                type: array
                title: Response List Payouts V1 Sellers Payouts Get
      security:
        - BearerAuth: []
components:
  schemas:
    PayoutItem:
      properties:
        payout_id:
          type: string
          title: Payout Id
        amount_cents:
          type: integer
          title: Amount Cents
        currency:
          type: string
          title: Currency
        status:
          type: string
          title: Status
        period_start:
          type: string
          title: Period Start
        period_end:
          type: string
          title: Period End
        paid_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Paid At
      type: object
      required:
        - payout_id
        - amount_cents
        - currency
        - status
        - period_start
        - period_end
      title: PayoutItem
  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>`.

````