cURL
curl --request GET \ --url https://api.stablepay.global/v2/webhooks \ --header 'Authorization: Bearer <token>'
List webhook events for your partner account
curl "https://api.stablepay.global/v2/webhooks?status=failed" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": [ { "id": "evt_abc123", "eventType": "transaction.payout_completed", "status": "delivered", "attempts": 1, "transactionId": "txn_xyz789", "deliveredAt": "2025-01-05T10:40:00Z", "createdAt": "2025-01-05T10:40:00Z" } ], "pagination": { "page": 1, "limit": 20, "total": 100, "totalPages": 5 } }