Documentation
Integrate payments in an afternoon.
HPG is a REST API for collecting and paying out money in The Gambia. Plain JSON, amounts in minor units, signed webhooks — no SDK required. Build in test mode, go live when you're ready.
Your integration path
Browse the docs
Secure by design
All traffic is TLS-encrypted, and every webhook is signed with HMAC-SHA256 so you can verify it came from us — always verify before fulfilling an order.
- HMAC-SHA256 payload signing
- Bearer token authorization
- IP whitelisting
- Hosted checkout — card data never touches your servers
// Verify a webhook signature
const expected = crypto
.createHmac("sha256", secret)
.update(rawBody)
.digest("hex");
const valid =
signature === expected;Stuck on something?
Check the FAQ or email us — a developer answers, not a bot.