Stripe Customers
List, search, and view customer details and subscriptions.
Commands
List recent customers
python3 customers/scripts/stripe_customers.py list --limit 10Search customers by email
python3 customers/scripts/stripe_customers.py search "john@example.com"Get customer details (including subscriptions)
python3 customers/scripts/stripe_customers.py get <customer-id>List active subscriptions
python3 customers/scripts/stripe_customers.py subscriptions --status active --limit 20Subscription summary (counts by status)
python3 customers/scripts/stripe_customers.py sub-summaryFollow-Up Questions
- "List my most recent customers"
- "Search for customer john@example.com"
- "Show all active subscriptions"
- "How many subscribers do I have by status?"