POST a deposit, get a payment page URL. We handle the rest.
Get instantly notified when a payment is confirmed and your customer is credited.
Every transfer is verified by our team before settlement to prevent fraud.
Your site calls LogPay with the customer's email and amount.
Account details + a 15-minute countdown. The customer transfers, then clicks "I have paid".
Once confirmed in our bank, we approve in seconds.
Your system credits the user automatically. Your LogPay balance grows.
Clean REST endpoints, a hosted checkout, and webhooks. Documentation lives inside your dashboard the moment you sign up.
curl -X POST https://www.logpay.site/api/public/deposits/create \
-H "x-api-key: sk_live_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"customer_email": "jane@example.com",
"amount": 5000,
"redirect_url": "https://yoursite.com/wallet"
}'
# Response
{
"reference": "LP-AB12CD-X92K7P",
"payment_url": "https://www.logpay.site/pay/LP-AB12CD-X92K7P",
"expires_at": "2026-06-07T14:35:00Z"
}