Webhook Events
Receive notifications about completed blockchain transactions.
You can receive webhook events when NFT transfers and new NFT Tokens or Collections are completed on the blockchain. This is a great way to keep your UI responsive and up to date, though it is optional. Alternatively, you can also poll using the Requests API.
To enable webhook events, you need to create a URL endpoint on your app that can read and respond to these events. Then, just let us know your URL and we can help set it up for you. You will start receiving webhooks with the following data:
Event Types
sent
- a blockchain transaction has been sent successfully
sent
- a blockchain transaction has been sent successfullyThe request_id
will match the one returned by the API call.
completed
- a blockchain transaction completed successfully
completed
- a blockchain transaction completed successfullyThe request_id
will match the one returned by the API call. If this event is related to creating a new NFT token, then the nft_collection
and nft_token_id
are also returned
error
- a blockchain transaction error occurred
error
- a blockchain transaction error occurredThe request_id
will match the one returned by the API call.
Last updated