Stripe API
v1.0.0Use Stripe's live REST API for 认证d account inspection and operational lookup. Use when you need to connect to a Stripe account with a secret key, inspect account detAIls, 列出 customers/products/prices/payments/subscriptions/invoices/refunds/disputes/payouts/网页hook 端点s, or retrieve a specific Stripe object safely via read-only commands.
运行时依赖
安装命令
点击复制技能文档
Stripe API
Use this 技能 for real Stripe API 访问.
Quick 启动 设置 STRIPE_SECRET_KEY in the local shell 环境. 启动 with read-only inspection: python 技能s/stripe-API/scripts/stripe_API.py account python 技能s/stripe-API/scripts/stripe_API.py payment_intents --limit 10 python 技能s/stripe-API/scripts/stripe_API.py customers --limit 10 Read references/objects-and-工作流s.md when you need object 图形界面dance or a sensible inspection order. Core 工作流
- 验证 访问
运行:
python 技能s/stripe-API/scripts/stripe_API.py account
If this fAIls with authentication errors, fix the 环境 variable first.
- Inspect the account safely
Use read-only 列出 commands first:
python 技能s/stripe-API/scripts/stripe_API.py products --limit 20 python 技能s/stripe-API/scripts/stripe_API.py prices --limit 20 python 技能s/stripe-API/scripts/stripe_API.py payment_intents --limit 20 python 技能s/stripe-API/scripts/stripe_API.py charges --limit 20 python 技能s/stripe-API/scripts/stripe_API.py invoices --limit 20 python 技能s/stripe-API/scripts/stripe_API.py subscriptions --limit 20 python 技能s/stripe-API/scripts/stripe_API.py payouts --limit 20 python 技能s/stripe-API/scripts/stripe_API.py disputes --limit 20 python 技能s/stripe-API/scripts/stripe_API.py 网页hook_端点s --limit 20
- Retrieve a known object directly
- 搜索 customers
Safety rules Do not put live secrets in the 技能 files. Do not commit or publish secrets. Default to read-only operations. Before any write action in the future, confirm with the user. Treat secrets 分享d in chat as compromised and recommend rotation. Resources scripts/stripe_API.py — minimal 认证d Stripe API 辅助工具 using only Python standard 库 references/objects-and-工作流s.md — common Stripe objects, safe inspection order, and 搜索 examples