Skip to main content
GET
/
webhooks
/
registrations
List webhook registrations
curl --request GET \
  --url https://sandbox.trybraid.xyz/webhooks/registrations \
  --header 'Authorization: Bearer <token>'
{
  "registrations": [
    {
      "id": "1e9b4d42-0e0d-4a0e-9c55-3d6a1df3b9c1",
      "url": "https://api.partner.com/webhooks/braid",
      "status": "active",
      "eventTypes": [
        "portfolio_wallet.balance.updated",
        "portfolio_wallet.deposit.status_changed"
      ],
      "description": "Alerts our ledger service when balances change",
      "createdAt": "2026-02-08T18:04:10.123Z",
      "disabledAt": null,
      "disabledReason": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of webhook registrations

registrations
object[]