ForHosting KIT · Notifications & Flows

Deliver webhooks reliably

Firing a webhook is one line of code; making it survive a flaky endpoint, a 500 error or a five-second timeout is where teams quietly lose a week. This endpoint takes the payload you give it, signs it, delivers it with retries, and tells you clearly if it can't.

● StablePer request + per delivery$0.002
Use it from WebAPIEmailApp soonTelegram soon

Run this on our servers with your account. Free tools run in your browser; this one bills your KIT balance per the price above.

The part of webhooks nobody wants to build twice

Every product that integrates with the outside world eventually needs to call someone else's URL and trust that the call lands. The naive version — a single HTTP POST with no retry — fails silently the moment a receiver restarts or a network blip happens. notify.webhook is the delivery layer teams keep reinventing: exponential backoff, signature headers, and a place for calls to go when they truly can't be delivered.

What a call to the endpoint does

POST /notify/webhook takes a target URL, a JSON body and optional custom headers, then attempts delivery with an HMAC signature attached so the receiver can verify the payload actually came from you and wasn't tampered with in transit. If the target responds with a non-2xx status or times out, delivery is retried on a backoff schedule; if all attempts are exhausted, the failed call is dead-lettered and surfaced back to you with the response details instead of vanishing.

Signing has a real history worth respecting

Payload signing on webhooks became a de facto standard because early webhook systems had no way to prove a callback wasn't forged by a third party who guessed the URL. We generate a signature per delivery using a secret you control, following the same header-and-hash pattern most modern webhook consumers already know how to verify, so integrating on the receiving end takes minutes, not a spec review.

Where it sits in a larger flow

Because delivery is async and tracked by task_id, you can fire a webhook from inside another automation — a payment event, a build finishing, a form submission — without blocking on the receiver's response time. Chain it after an alert-routing decision, or use it as the outbound leg of a sync job that needs to notify a downstream system the moment work completes.

What you see when it's done

Every attempt is logged with its HTTP status, latency and response body excerpt, so a failed delivery isn't a mystery — you get the same detail a curl command would have shown you. Final status, successful or dead-lettered, arrives through a signed webhook of your own or a signed link valid for 24 hours, whichever you've configured for this endpoint's results.

Notify a downstream system on completion

A batch export job finishes and posts a webhook to the customer's ERP so their inventory updates without anyone polling for status.

Bridge legacy systems that can't poll

An older internal tool that only accepts inbound HTTP calls gets reliably notified of new orders, with retries covering its occasional downtime.

Third-party integration handshake

A marketplace app relays order events to a merchant's own webhook endpoint, with signature verification so the merchant trusts the payload.

Cross-service event fan-out

One internal event triggers webhook calls to three different partner endpoints in parallel, each tracked and retried independently.

How does the webhook delivery API sign requests?

Each delivery includes an HMAC signature header computed from your configured secret and the payload body, so the receiver can verify authenticity before trusting the data.

How many retries happen before a webhook is considered failed?

Failed deliveries are retried automatically up to three times with backoff; after that the call is dead-lettered and reported back with full response details, and it is never charged.

Is notify.webhook free to use?

There's no free tier — free tiers get abused and slow everyone down. Access runs on a prepaid ForHosting KIT balance: top up from $10.00 (it never expires) and each request is charged at its published price, so a call with no balance returns HTTP 402. No subscription, no tokens, no invented credits, and a failed task is never charged.

What does a webhook delivery cost?

It's a flat $0.002 per POST /notify/webhook request, whether the delivery succeeds on the first attempt or after retries, with no extra charge per retry attempt.

Can I send custom headers with the webhook?

Yes, you can attach any custom headers alongside the automatic signature header, useful for auth tokens the receiving endpoint expects.

What happens to webhooks that never succeed?

They land in a dead-letter state you can inspect via the task result, with the last response status and body included so you can debug the receiving side.

Can I use this for bulk webhook delivery?

Yes, each call is an independent async task, so you can fire many in parallel from a loop or a batch job without them blocking each other.

Is the payload data retained after delivery?

No, payloads and delivery logs are deleted after the stated retention period and are never used for training.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/notify/webhook

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, and soon from our app, email and Telegram.

curl -X POST https://api.kit.forhosting.com/notify/webhook \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":"…"}'
{
  "input": "…"
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "notify.webhook",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →