Slip verification
Services
Slip verification
Upload a Thai bank-transfer slip. The QR on it is checked against the bank, and every slip you have already checked is flagged as a duplicate. Currently wired to the SCB sandbox.
Drop a slip image here, or click to choosePNG, JPEG, or WebP · up to 8 MB
API access
Verify slips from your own system: send a slip image or a raw miniQR string to the endpoint below with an API key. Amounts in responses are integer satang (฿1.00 = 100).
Examples
# Verify a slip image curl -X POST /api/v1/slips/verify \ -H 'Authorization: Bearer n3k_YOUR_KEY' \ -F 'image=@slip.jpg'
# Verify a decoded miniQR payload
curl -X POST /api/v1/slips/verify \
-H 'Authorization: Bearer n3k_YOUR_KEY' \
-H 'Content-Type: application/json' \
-d '{"qrData":"0038...5102TH..."}'