Install
openclaw skills install stripe-api-readonlyUse Stripe's live REST API for authenticated account inspection and operational lookup. Use when you need to connect to a Stripe account with a secret key, inspect account details, list customers/products/prices/payments/subscriptions/invoices/refunds/disputes/payouts/webhook endpoints, or retrieve a specific Stripe object safely via read-only commands.
openclaw skills install stripe-api-readonlyUse this skill for real Stripe API access.
STRIPE_SECRET_KEY in the local shell environment.python skills/stripe-api/scripts/stripe_api.py accountpython skills/stripe-api/scripts/stripe_api.py payment_intents --limit 10python skills/stripe-api/scripts/stripe_api.py customers --limit 10references/objects-and-workflows.md when you need object guidance or a sensible inspection order.Run:
python skills/stripe-api/scripts/stripe_api.py account
If this fails with authentication errors, fix the environment variable first.
Use read-only list commands first:
python skills/stripe-api/scripts/stripe_api.py products --limit 20
python skills/stripe-api/scripts/stripe_api.py prices --limit 20
python skills/stripe-api/scripts/stripe_api.py payment_intents --limit 20
python skills/stripe-api/scripts/stripe_api.py charges --limit 20
python skills/stripe-api/scripts/stripe_api.py invoices --limit 20
python skills/stripe-api/scripts/stripe_api.py subscriptions --limit 20
python skills/stripe-api/scripts/stripe_api.py payouts --limit 20
python skills/stripe-api/scripts/stripe_api.py disputes --limit 20
python skills/stripe-api/scripts/stripe_api.py webhook_endpoints --limit 20
python skills/stripe-api/scripts/stripe_api.py get /customers/cus_123
python skills/stripe-api/scripts/stripe_api.py get /payment_intents/pi_123
python skills/stripe-api/scripts/stripe_api.py search_customers "email:'alice@example.com'"
scripts/stripe_api.py — minimal authenticated Stripe API helper using only Python standard libraryreferences/objects-and-workflows.md — common Stripe objects, safe inspection order, and search examples