Skip to main content
GET
/
api
/
admin
/
webhooks
Get webhooks
curl --request GET \
  --url https://{cluster_id}.on-hellgate.cloud/api/admin/webhooks \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "created_at": "2023-10-01T12:00:00Z",
      "masked_hmac_key": "123xxxx",
      "events": [
        "network.token.updated"
      ],
      "url": "https://example.com/webhook"
    }
  ],
  "links": {
    "next": "https://my-cluster-id.on-hellgate.cloud/admin/webhooks?after=123e4567-e89b-12d3-a456-426614174000&limit=20"
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:20

The limit parameter defines the maximum number of rows returned in a single call and enables consecutive pagination using the next link provided in the response payload.

Required range: 1 <= x <= 100

Response

Success response

data
object[]
required