Events
Retrieve event webhooks
API Documentation
Address
Airdrops
Events
Farming
DEFI Actions
Events
Retrieve event webhooks
Retrieves all webhooks associated with the API key.
GET
/
events
/
webhooks
curl --request GET \
--url https://api.getnimbus.io/events/webhooks
{
"data": [
{
"id": "<string>",
"owner": "<string>",
"url": "<string>",
"addresses": [
"<string>"
],
"chain": "SUI",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Response
200
application/json
A list of webhooks
The API key of the webhook owner
The URL to which webhook events will be sent
List of addresses being monitored by this webhook
The unique identifier for the webhook
The blockchain chain associated with this webhook
The date and time when the webhook was created
The date and time when the webhook was last updated
curl --request GET \
--url https://api.getnimbus.io/events/webhooks
{
"data": [
{
"id": "<string>",
"owner": "<string>",
"url": "<string>",
"addresses": [
"<string>"
],
"chain": "SUI",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}