stripe

Installation
SKILL.md

Stripe

Manage customers, payments, subscriptions, and invoices via the Stripe API.

Environment Variables

  • STRIPE_SECRET_KEY - Stripe secret key (starts with sk_)

List customers

curl -s -u "$STRIPE_SECRET_KEY:" \
  "https://api.stripe.com/v1/customers?limit=10" | jq '.data[] | {id, email, name}'

Create payment intent

curl -s -X POST -u "$STRIPE_SECRET_KEY:" \
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
1
First Seen
Mar 1, 2026