Skip to main content
GET
/
api
/
webhook
/
{id}
curl -X GET 'https://crypto-api.yativo.com/api/webhook/wbh_01HX9KZMB3F7VNQP8R2WDGT4ET' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "message": "Webhook retrieved successfully",
  "data": {
    "webhook_id": "wbh_01HX9KZMB3F7VNQP8R2WDGT4ET",
    "url": "https://your-app.com/webhooks/yativo",
    "events": ["transaction.confirmed", "transaction.failed", "swap.completed"],
    "description": "Production webhook for transaction events",
    "status": "active",
    "last_triggered_at": "2026-03-25T15:30:00Z",
    "created_at": "2026-03-26T12:00:00Z"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
id
string
required
The ID of the webhook to retrieve.
curl -X GET 'https://crypto-api.yativo.com/api/webhook/wbh_01HX9KZMB3F7VNQP8R2WDGT4ET' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "message": "Webhook retrieved successfully",
  "data": {
    "webhook_id": "wbh_01HX9KZMB3F7VNQP8R2WDGT4ET",
    "url": "https://your-app.com/webhooks/yativo",
    "events": ["transaction.confirmed", "transaction.failed", "swap.completed"],
    "description": "Production webhook for transaction events",
    "status": "active",
    "last_triggered_at": "2026-03-25T15:30:00Z",
    "created_at": "2026-03-26T12:00:00Z"
  }
}