A FastAPI-based application that integrates with Stripe to create and manage payment links. Users can generate payment links, process payments through Stripe Checkout, and track the payment status.
- Generate unique payment links.
- Stripe Checkout integration for secure payments.
- Payment links expire after 5 minutes.
- View payment statuses (Pending, Paid, Expired).
- Export payment data to CSV.
- Set your Stripe API keys in the
.env
file:STRIPE_PUBLIC_KEY=<your_public_key> STRIPE_SECRET_KEY=<your_secret_key>
uvicorn main:app --reload