Community-driven payment verification for Binance Smart Chain. Fast, reliable, and free forever.
Built with enterprise-grade security. Verify transactions with confidence knowing all payments are cryptographically validated.
Sub-second verification times. Get instant payment confirmation on the Binance Smart Chain network.
Works on both BSC mainnet and testnet. Switch networks seamlessly for development and production.
Simple REST API with comprehensive documentation. Integrate payment verification in minutes, not hours.
Track confirmations, verify amounts, and monitor transaction status in real-time across the BSC network.
Community-driven and open-source. No fees, no hidden costs. Built for the BNB ecosystem by the community.
Health check endpoint
curl https://api.bnbx402.com/health
List supported payment kinds
curl https://api.bnbx402.com/supported
Verify a payment transaction
curl -X POST https://api.bnbx402.com/verify \\
-H "Content-Type: application/json" \\
-d '{
"transactionHash": "0x...",
"fromAddress": "0x...",
"toAddress": "0x...",
"expectedAmount": "0.1"
}'
Settle a payment
curl -X POST https://api.bnbx402.com/settle \\
-H "Content-Type: application/json" \\
-d '{
"transactionHash": "0x...",
"recipientAddress": "0x...",
"amount": "0.1"
}'
Check the health status of the BNB X402 Validator service.
View the supported payment kinds and schemes.