Skip to main content
GET /accounts/{account_id}/webhooks/{subscription_id}
Required scope: webhooks:read. The sharedSecret is not returned by this endpoint.

Path parameters

NameTypeDescription
account_idstringThe Brale account that owns the subscription.
subscription_idstringThe ID of the webhook subscription.

Example request

curl https://api.brale.xyz/accounts/{account_id}/webhooks/{subscription_id} \
  -H "Authorization: Bearer {access_token}"

Example response

{
  "id": "3D3jNzs2r7Sf78qtYpRe1biscLG",
  "events": ["transfer.completed"],
  "url": "https://your-app.example.com/webhooks/brale",
  "status": "active"
}
See the Webhooks overview for delivery, scope, and signature details.