List webhook subscriptions
/api/v1/webhooksX-API-KeyQuery parameters
- isActivestringrequired
- eventTypestringrequired
Responses
200List of webhook subscriptions
Response follows the unified success / data / meta / error envelope.
curl https://api-staging.coinbax.com/api/v1/webhooks?isActive=<isActive>&eventType=<eventType> \
-H "X-API-Key: $COINBAX_API_KEY"const response = await fetch('https://api-staging.coinbax.com/api/v1/webhooks?isActive=<isActive>&eventType=<eventType>', {
headers: {
'X-API-Key': process.env.COINBAX_API_KEY,
},
});
const result = await response.json();