REST API
Create BCH payment invoices with a single API call. Plug it into any custom backend or checkout flow with minimal effort.
curl -X POST https://api.gatewaycrypto.io/v1/payments \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"currency": "BCH",
"amount": 0.1,
"order_id": "ORD-84503",
"callback_url": "https://yoursite.com/webhook"
}'