Skip to main content
GET
/
webhooks
List webhook subscriptions
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/webhooks \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "webhooks": [
      {
        "id": "<string>",
        "url": "<string>",
        "events": [
          "<string>"
        ],
        "is_active": true,
        "failure_count": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Response

All webhook subscriptions

data
object
Last modified on March 1, 2026