
Stripe Retrieve
CertifiedFetch Stripe account balances
Stripe Retrieve
Certified
Fetch Stripe account balances
Calls Stripe to return available and pending balances per currency using the provided secret key. Live vs test data depends on the API key; response includes the raw Stripe JSON for auditing.
yaml
type: io.kestra.plugin.stripe.balance.RetrieveExamples
Get current balance
yaml
id: get_balance
namespace: company.team
tasks:
- id: get_balance
type: io.kestra.plugin.stripe.balance.Retrieve
apiKey: "{{ secret('STRIPE_API_KEY') }}"
Properties
apiKey *Requiredstring
Stripe API Key
Secret key for authenticating with Stripe. Starts with 'sk_' for live/test keys.
Outputs
available array
SubTypeobject
Available balances
Amounts ready to payout, grouped by currency; values are in the smallest currency unit
pending array
SubTypeobject
Pending balances
Amounts not yet available, grouped by currency; values are in the smallest currency unit
raw object
Raw Stripe response
Full balance payload converted to a map for debugging or downstream use