Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

Use this file to discover all available pages before exploring further.

The table below shows the object structure of every webhook generated by the Fireblocks webhooks service.
FieldTypeDescription
idUUIDUnique identifier of the object.
urlstring (unique per workspace)The URL of the webhook endpoint.
descriptionstring (nullable)A description of the webhook.
eventsarray of strings (enums)The list of events to enable for this endpoint. An asterisk [’*’] indicates that all events are enabled.
statusstring (enum)The webhook’s current status. Can be enabled or disabled.
createdAtnumberTime at which the object was created, measured in milliseconds since the Unix epoch.
updatedAtnumberTime at which the object was updated, measured in milliseconds since the Unix epoch.

Webhook object structure example

{
    "id": "........-....-....-....-............",
    "url": "https://example.com",
    "description": "example",
    "events": [
        "transaction.created",
        "vault_account.asset.added"
    ],
    "status": "ENABLED",
    "createdAt": 1754229327599,
    "updatedAt": 1754229327599
}