GET /api/v2/storefront/billing/payouts
Returns payouts from your connected Stripe account to your bank, newest first. Cursor-paginated: pass the last item’s id as starting_after to fetch the next page. Use this to reconcile settled funds against your bank deposits.
Request
Parameters
| Field | Type | Required | Notes |
|---|---|---|---|
limit | integer | No | Query param. Maximum results, 1–100. Default 25 |
starting_after | string | No | Query param. Cursor — the id of the last item from the previous page |
targetCustomerId | number | No | Query param. Parent customers read a child account’s payouts |
Response
amount is in the currency’s smallest unit (cents for usd). created and arrivalDate are Unix timestamps (seconds) — arrivalDate is when funds are expected to land in the bank. This endpoint is cursor-paginated: when meta.hasMore is true, pass meta.cursor as starting_after to get the next page; see Pagination.
Errors
400 VALIDATION_ERROR—limitoutside1–100, no Stripe account provisioned, or Stripe is not configured on the server.
Related
Billing tasks
All billing operations
Get balance transactions
The underlying ledger entries
Get account status
Confirm payouts are enabled
Billing overview
Stripe Connect concepts