cURL
curl https://api.neuraldraft.io/v1/webhook-endpoints \
-H "Authorization: Bearer ndsk_live_yourkey"const eps = await nd.webhooks.endpoints.list();eps = requests.get("https://api.neuraldraft.io/v1/webhook-endpoints",
headers={"Authorization": f"Bearer {key}"}).json()["data"]<?php
$eps = json_decode((string) $client->get('webhook-endpoints', [
'headers' => ['Authorization' => 'Bearer '.$key],
])->getBody(), true)['data'];{
"data": [
{
"id": "whe_2NgZcMjPQrSt",
"url": "https://hooks.lakesideyoga.uk/neural-draft",
"events": [
"order.paid",
"order.fulfilled",
"blog_post.published"
],
"is_active": true,
"last_delivery_status": "success",
"last_delivery_at": "2026-04-19T09:11:01Z",
"created_at": "2026-03-10T12:21:00Z"
}
]
}{
"type": "https://api.neuraldraft.io/errors/unauthorized",
"title": "Unauthorized",
"status": 401,
"detail": "API key missing or invalid.",
"code": "unauthorized",
"instance": "req_2Nh4PqRsTuVw"
}Webhooks
List webhook endpoints
GET
/
webhook-endpoints
cURL
curl https://api.neuraldraft.io/v1/webhook-endpoints \
-H "Authorization: Bearer ndsk_live_yourkey"const eps = await nd.webhooks.endpoints.list();eps = requests.get("https://api.neuraldraft.io/v1/webhook-endpoints",
headers={"Authorization": f"Bearer {key}"}).json()["data"]<?php
$eps = json_decode((string) $client->get('webhook-endpoints', [
'headers' => ['Authorization' => 'Bearer '.$key],
])->getBody(), true)['data'];{
"data": [
{
"id": "whe_2NgZcMjPQrSt",
"url": "https://hooks.lakesideyoga.uk/neural-draft",
"events": [
"order.paid",
"order.fulfilled",
"blog_post.published"
],
"is_active": true,
"last_delivery_status": "success",
"last_delivery_at": "2026-04-19T09:11:01Z",
"created_at": "2026-03-10T12:21:00Z"
}
]
}{
"type": "https://api.neuraldraft.io/errors/unauthorized",
"title": "Unauthorized",
"status": 401,
"detail": "API key missing or invalid.",
"code": "unauthorized",
"instance": "req_2Nh4PqRsTuVw"
}Authorizations
Project API key. Pass as Authorization: Bearer ndsk_live_.... Manage
keys via /projects/me/api-keys. Test-mode keys use
the ndsk_test_ prefix.
Response
List of subscriptions.
Show child attributes
Show child attributes
⌘I