Skip to main content
GET
/
api
/
webhook
/
list
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"
    }
  ]
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
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"
    }
  ]
}