POST/v1/webhooks/test0 credits
Test webhook
POST a synthetic prediction.succeeded to your URL, signed with the same account secret. The fake id is pred_00000000000000000000000000000000 — it is not a real job and cannot read another account’s prediction.
Use this to check signature verification before production traffic. No webhook configured is 404.
Needs predict:write on the key. This is a permission on the key, not a request header. Missing it returns 403 api_not_enabled.
Request parameters
No query, path, or JSON body parameters.
Response
{
"object": "webhook_test",
"delivered": true,
"status_code": 200,
"event": "prediction.succeeded"
}
Response fields
| Name | Type | Required | Description |
|---|---|---|---|
object |
string | Required | Always webhook_test. |
delivered |
boolean | Required | Whether the signed POST reached your URL successfully. |
status_code |
number | Nullable | HTTP status from your URL, or null if no response. |
event |
string | Required | Always prediction.succeeded. |