Example Request
curl --request POST \ --url https://sekalipay.com/api/v1/balance \ --header 'X-APIKEY: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "amount": 100000, "channel": "QRIS" }'
Response Sample
200 OK
{
"message": "OK",
"data": {
"payment_url": "https://...",
"amount": 100000,
"expires_at": "..."
}
}