API Documentation
Address
Airdrops
Events
Farming
DEFI Actions
Events
Create a new event webhook
Creates a new webhook for event notifications.
POST
/
events
/
webhooks
curl --request POST \
--url https://api.getnimbus.io/events/webhooks \
--header 'Content-Type: application/json' \
--data '{
"url": "<string>",
"addresses": [
"<string>"
]
}'
{
"data": {
"id": "<string>",
"owner": "<string>",
"url": "<string>",
"addresses": [
"<string>"
],
"chain": "SUI",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
Body
application/json
Response
200
application/json
Webhook created successfully
The response is of type object
.
curl --request POST \
--url https://api.getnimbus.io/events/webhooks \
--header 'Content-Type: application/json' \
--data '{
"url": "<string>",
"addresses": [
"<string>"
]
}'
{
"data": {
"id": "<string>",
"owner": "<string>",
"url": "<string>",
"addresses": [
"<string>"
],
"chain": "SUI",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
Assistant
Responses are generated using AI and may contain mistakes.