{ "success": false, "error": { "status": 400, "code": "INSUFFICIENT_BALANCE", "message": "Insufficient wallet balance" }, "data": null }
Send cryptocurrency to external address
curl -X POST https://api.transaction.gg/merchant/wallet/send \ -H "Authorization: Bearer sk_your_secret_key" \ -H "Content-Type: application/json" \ -d '{ "destination": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa", "amount": "0.001", "coin": "BTC", "subtractFee": true }'
{ "success": true, "data": { "txHash": "abc123...", "fee": "0.0001", "amount": "0.001", "destination": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" } }