stripe

Installation
SKILL.md

Troubleshooting

If requests fail, run zero doctor check-connector --env-name STRIPE_TOKEN or zero doctor check-connector --url https://api.stripe.com/v1/account --method GET

Important: Stripe Uses Form-Encoded Bodies

Stripe API accepts application/x-www-form-urlencoded for POST requests, not JSON. Write request bodies to a .txt file using key=value&key=value format. Nested params use bracket syntax: items[0][price]=price_xxx.

Core APIs

Get Account Info

curl -s -u "$STRIPE_TOKEN:" "https://api.stripe.com/v1/account" | jq '{id, business_profile, charges_enabled, payouts_enabled}'

Docs: https://docs.stripe.com/api/accounts/retrieve

List Customers

Related skills
Installs
23
GitHub Stars
59
First Seen
Mar 12, 2026