Send a test webhook event
Fires one real delivery to your configured webhook URL with a clearly-labeled "event": "webhook.test" payload (never confusable with a real corporate_action.* event) — so you can verify your endpoint and signature check end-to-end. Wallet-session auth; requires an active key with a webhook already set.
Body
required
application/json
- Type: stringaddressrequired
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for post/api/builder/webhook-test
curl https://www.hoodgrow.com/api/builder/webhook-test \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"address": ""
}'
{
"payload": {
"id": "test-1754920600000",
"event": "webhook.test",
"symbol": "TEST",
"currentMultiplier": null,
"stagedMultiplier": null,
"effectiveAt": null,
"ts": "2026-08-11T14:02:07.881Z"
},
"outcome": {
"status": "sent",
"durationMs": 214
}
}