Now accepting merchants

Bank transfers,
the modern way.

LogPay lets your website or app accept Nigerian bank transfers with one API call. Hosted payment pages, real-time webhooks, and a dashboard your finance team will actually like.

One API call

POST a deposit, get a payment page URL. We handle the rest.

Real-time webhooks

Get instantly notified when a payment is confirmed and your customer is credited.

Manual review

Every transfer is verified by our team before settlement to prevent fraud.

How LogPay works

  1. 1

    Your customer initiates a deposit

    Your site calls LogPay with the customer's email and amount.

  2. 2

    We show a hosted payment page

    Account details + a 15-minute countdown. The customer transfers, then clicks "I have paid".

  3. 3

    Our team verifies the transfer

    Once confirmed in our bank, we approve in seconds.

  4. 4

    We fire your webhook

    Your system credits the user automatically. Your LogPay balance grows.

Developer-first

Integrate in 5 minutes

Clean REST endpoints, a hosted checkout, and webhooks. Documentation lives inside your dashboard the moment you sign up.

  • RESTful API with API keys
  • Hosted payment page (no PCI scope)
  • Webhook signing & retries
  • Real-time merchant dashboard
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"
}