v1.0.0 Stable Release

The Infrastructure for
Digital Payments

Doripay provides a unified API for PPOB, Bill Payments, and Digital Top-ups. Built with Go, PostgreSQL, and Redis for high-performance financial transactions.

Powered by modern stack

Go (Fiber)
PostgreSQL
Redis
main.go
func CreateTransaction(c *fiber.Ctx) error {
  // Initialize transaction
  trx := new(models.Transaction)
  if err := c.BodyParser(trx); err != nil {
    return c.Status(400).JSON(err)
  }

  // Process payment via Gateway
  resp, _ := provider.Charge(trx.Amount)
  return c.JSON(fiber.Map{
    "status": "pending",
    "ref_id": resp.RefID,
  })
}
curl -X POST https://api.doripay.com/v1/trx
{ "status": "pending", "ref_id": "ORD-20241220-X92" }

Instant Settlement

Automated transaction processing with direct provider integration for T+0 settlement capability.

99.9% Uptime SLA

Redundant infrastructure with auto-failover switching between Digiflazz and backup providers.

Bank-Grade Security

End-to-end encryption, strict JWT authentication, and role-based access control (RBAC).