LinkPay API
Integrate payment links directly into your product. Automate link creation, delivery, and tracking — all via a simple REST API.
What you'll be able to do
Generate Payment Links
Programmatically create payment links with custom amounts, currencies, and metadata in a single API call.
Send to Customers
Deliver payment links via email or SMS directly from your backend, without manual intervention.
Webhook Events
Receive real-time notifications for payment completions, expirations, and status changes in your system.
Reporting & Analytics
Query transaction history, conversion rates, and revenue data programmatically for your own dashboards.
Simple, developer-friendly API
POST /v1/links HTTP/1.1
Host: api.linkpay.click
Authorization: Bearer sk_live_••••••••••••
Content-Type: application/json
{
"amount": 49.99,
"currency": "EUR",
"recipient_email": "[email protected]",
"description": "Invoice #1042",
"expires_in": 86400
}
// 201 Created
{
"id": "lnk_01HXYZ9ABCDEF",
"url": "https://linkpay.click/pay/aBcDeFgH",
"status": "active",
"expires_at": "2026-03-25T12:00:00Z"
}How it works
Authenticate
Use your secret API key to authenticate requests over HTTPS.
Create a link
POST to /v1/links with an amount, currency, and optional recipient to get a ready-to-share URL.
Track & automate
Listen for webhook events or poll the API to track payment status and automate your workflows.
Be the first to know
API access is not yet publicly available. Get in touch and we'll notify you as soon as early access opens.