Payment Links
Create and manage reusable payment links.
Payment Links
Payment links are the fastest way to accept payments without writing code. Simply create a link, share the URL, and get paid.
How it Works
- Create: Define a name, amount (optional), and description in the dashboard.
- Share: Copy the unique slug (e.g.,
uverus.pay/donate-me). - Collect: Customers open the link, enter their details (and amount if variable), and pay via card.
Variable Amounts
If you don't specify an amount when creating a link, the customer will be prompted to enter an amount at checkout. This is perfect for:
- Donations
- Custom invoices
- Tipping
Integration via API
You can also create payment links programmatically:
POST /api/v1/payment-links
Content-Type: application/json
Authorization: Bearer sk_test_...
{
"name": "Project Alpha Payment",
"amount": 500000,
"description": "Payment for software services"
}Response
{
"id": "...",
"slug": "project-alpha-payment",
"url": "http://localhost:5173/checkout/project-alpha-payment"
}