List webhooks
curl --request POST \
--url https://api.sand.etherfuse.com/ramp/webhooks \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"pageNumber": 0,
"pageSize": 30
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({pageNumber: 0, pageSize: 30})
};
fetch('https://api.sand.etherfuse.com/ramp/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/webhooks"
payload = {
"pageNumber": 0,
"pageSize": 30
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"items": [
{
"createdAt": 1748345400,
"eventType": "order_updated",
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"updatedAt": 1748431800,
"url": "https://example.com/webhooks/etherfuse"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Webhooks
List webhooks
POST
/
ramp
/
webhooks
List webhooks
curl --request POST \
--url https://api.sand.etherfuse.com/ramp/webhooks \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"pageNumber": 0,
"pageSize": 30
}
'const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({pageNumber: 0, pageSize: 30})
};
fetch('https://api.sand.etherfuse.com/ramp/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/webhooks"
payload = {
"pageNumber": 0,
"pageSize": 30
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"items": [
{
"createdAt": 1748345400,
"eventType": "order_updated",
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"updatedAt": 1748431800,
"url": "https://example.com/webhooks/etherfuse"
}
],
"pageNumber": 0,
"pageSize": 30,
"totalItems": 42,
"totalPages": 2,
"next": "<string>"
}Authorizations
API key sent in the Authorization header.
Body
application/json
Response
200 - application/json
Paginated webhooks
A page of webhooks.
The items on this page.
Show child attributes
Show child attributes
Zero-based index of this page.
Required range:
x >= 0Example:
0
Number of items per page.
Required range:
x >= 0Example:
30
Total number of items across all pages.
Required range:
x >= 0Example:
42
Total number of pages.
Required range:
x >= 0Example:
2
URL to fetch the next page of results, if available.