Dokumentasi API

Integrasikan layanan kami ke sistem Anda dengan mudah.

API Console (Live Test)

Panduan Endpoint API

Cek Saldo User

Memuat...

Cek sisa saldo aktif pada akun Anda secara real-time.

Contoh Response:

{
  "balance": 100000
}

Membuat Invoice

Memuat...

Buat tagihan/invoice deposit baru untuk menghasilkan QRIS dengan mengirimkan nominal melalui parameter URL.

Contoh Response:

{
  "success": true,
  "invoice_id": "64c8d9e...",
  "amount": 10000,
  "fee": 123,
  "total": 10123,
  "qris_image": "https://...",
  "expired_at": "2025-01-01 12:00:00"
}

Cek Status Invoice

Memuat...

Cek status pembayaran invoice (pending, paid, expired) berdasarkan ID.

Contoh Response:

{
  "invoice_id": "64c8d9e...",
  "amount": 10000,
  "fee": 123,
  "total": 10123,
  "status": "pending",
  "qris_image": "https://...",
  "expired_at": "2025-01-01 12:00:00",
  "created_at": "2025-01-01 11:30:00"
}