curl -X GET 'https://crypto-api.yativo.com/api/webhook/list' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"message": "Webhooks retrieved successfully",
"data": [
{
"webhook_id": "wbh_01HX9KZMB3F7VNQP8R2WDGT4ET",
"url": "https://your-app.com/webhooks/yativo",
"events": ["transaction.confirmed", "transaction.failed"],
"description": "Production webhook for transaction events",
"status": "active",
"created_at": "2026-03-26T12:00:00Z"
}
]
}
Retrieve all registered webhook endpoints
curl -X GET 'https://crypto-api.yativo.com/api/webhook/list' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"message": "Webhooks retrieved successfully",
"data": [
{
"webhook_id": "wbh_01HX9KZMB3F7VNQP8R2WDGT4ET",
"url": "https://your-app.com/webhooks/yativo",
"events": ["transaction.confirmed", "transaction.failed"],
"description": "Production webhook for transaction events",
"status": "active",
"created_at": "2026-03-26T12:00:00Z"
}
]
}
Bearer YOUR_ACCESS_TOKENcurl -X GET 'https://crypto-api.yativo.com/api/webhook/list' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"message": "Webhooks retrieved successfully",
"data": [
{
"webhook_id": "wbh_01HX9KZMB3F7VNQP8R2WDGT4ET",
"url": "https://your-app.com/webhooks/yativo",
"events": ["transaction.confirmed", "transaction.failed"],
"description": "Production webhook for transaction events",
"status": "active",
"created_at": "2026-03-26T12:00:00Z"
}
]
}