GET/v1/webhooks0 credits
Get webhook
Account webhook, not per request. One URL and one secret sign every delivery for this account only — another account’s jobs never land here. Set the URL on the Hookest site (API page). These HTTP routes are optional if you already saved it there. Polling on get prediction stays on and stays free.
configured is true only when an HTTPS URL is active. A disabled endpoint returns url: null and configured: false. Plan loss does that automatically. The raw secret is never returned here — it is shown once on the site, or on create / rotate.
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",
"url": "https://customer.example/hookest",
"configured": true
}
Response fields
| Name | Type | Required | Description |
|---|---|---|---|
object |
string | Required | Always webhook. |
url |
string | Nullable | Configured HTTPS URL, or null when none is set. |
configured |
boolean | Required | True only when an HTTPS URL is active. |