get
https://api.neutron.me/api/v2/webhook
Retrieve the webhooks, if any, set for the authenticated account
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve all webhooks registered for your account.
Example Request
curl https://api.neutron.me/api/v2/webhook \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"Example Response (webhook registered)
{
"data": [
{
"id": "01e2a3dc-0c34-4e14-92e4-b270c4778d95",
"callback": "https://yourapp.com/webhooks/neutron",
"createdAt": 1747889654376
}
]
}Example Response (no webhook)
{
"data": []
}If no webhook is set, the response returns an empty array.
Response Fields
Thesecretis never returned in API responses for security. If you've lost your webhook secret, update the webhook with a new one.
Related
- Create Webhook — Register a new webhook
- Webhook Guide — Complete setup and verification guide
401Unauthorized - Invalid or missing authentication credentials
