Get Stripe payouts is a WordPress ability from WooCommerce Stripe Gateway — usable via Easy MCP AI, which connects Claude, ChatGPT, and any AI assistant to your site.
Install Free Plugin →Get Stripe payouts
Read-onlyList Stripe payouts, optionally filtered by status, arrival date, or created date.
Requires the WooCommerce Stripe Gateway plugin active on WordPress 6.9+ with WooCommerce 10.9 or later, since every ability registers through WooCommerce Core's AbilitiesLoader. Abilities are also gated behind the 'wc_stripe_abilities_enabled' filter, which defaults to off, and the current user needs the 'manage_woocommerce' capability.
What it does
This ability lists Stripe payouts via Stripe's payouts API. It accepts an optional limit (1-100, defaulting to 10), a status filter (pending, paid, in_transit, canceled, or failed), an arrival_date range (arrival_date_gte/arrival_date_lte), a created date range (created_gte/created_lte), and Stripe's cursor pagination. It lets an AI assistant quickly answer questions like which payouts are still pending or which ones landed in a given week.
See it in action
You ask your AI assistant
"Show me all Stripe payouts with status 'paid' that arrived in the last two weeks."
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | No | Maximum number of payouts to return. Defaults to 10; Stripe caps at 100. |
| starting_after | string | No | Stripe cursor — return payouts after this object ID. |
| ending_before | string | No | Stripe cursor — return payouts before this object ID. |
| status | string | No | Filter to payouts in a given status: pending, paid, in_transit, canceled, or failed. |
| arrival_date_gte | integer | No | Filter to payouts arriving at or after this Unix timestamp. |
| arrival_date_lte | integer | No | Filter to payouts arriving at or before this Unix timestamp. |
| created_gte | integer | No | Filter to payouts created at or after this Unix timestamp. |
| created_lte | integer | No | Filter to payouts created at or before this Unix timestamp. |
Returns
A Stripe list of raw payout objects matching the given filters (status, arrival date range, created date range).
Permission
The current user must have the 'manage_woocommerce' capability, checked via WC_Stripe_Abilities_Registrar::can_manage_woocommerce().
More WooCommerce Stripe Gateway abilities
Get Stripe account summary
Summarize the current state of the store's connected Stripe account in one zero-argument read.
Get Stripe balance
Check the merchant's current Stripe balance across available, pending, and reserved amounts.
Get Stripe balance transactions
List Stripe balance transactions — charges, refunds, payouts, and adjustments — that moved money in or out of the balance.
Get Stripe charge by ID
Look up a single Stripe charge by its ID, with optional related objects inflated inline.
Get Stripe charges
List recent Stripe charges, optionally filtered by customer, payment intent, or date range.
Get Stripe dispute by ID
Look up a single Stripe dispute by ID, including its evidence and linked charge.