> ## 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 Next Payout

> Next scheduled Stripe payout for the seller (G2 -- issue #140).

Synthesized from Account.settings.payouts.schedule (interval +
anchor + delay_days) + current Balance.available. Returns 404 when
there's no Connect account, the schedule is manual or unknown, or
Stripe is unreachable -- the frontend treats 404 as "hide the row."
Returns 200 with expected_date=null when the balance is zero so
the row hides gracefully without a 404 round-trip.



## OpenAPI

````yaml /openapi.json get /v1/sellers/next-payout
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/next-payout:
    get:
      tags:
        - sellers
      summary: Get Next Payout
      description: |-
        Next scheduled Stripe payout for the seller (G2 -- issue #140).

        Synthesized from Account.settings.payouts.schedule (interval +
        anchor + delay_days) + current Balance.available. Returns 404 when
        there's no Connect account, the schedule is manual or unknown, or
        Stripe is unreachable -- the frontend treats 404 as "hide the row."
        Returns 200 with expected_date=null when the balance is zero so
        the row hides gracefully without a 404 round-trip.
      operationId: get_next_payout_v1_sellers_next_payout_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NextPayoutResponse'
components:
  schemas:
    NextPayoutResponse:
      properties:
        expected_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Expected Date
        expected_cents:
          type: integer
          title: Expected Cents
        currency:
          type: string
          title: Currency
      type: object
      required:
        - expected_date
        - expected_cents
        - currency
      title: NextPayoutResponse
      description: |-
        Next scheduled Stripe payout for a seller (issue #140 G2).

        expected_date is null when the seller is Connect-configured but
        currently has a zero available balance -- the frontend hides the
        row gracefully without a 404 round-trip.

````