Send Your First Webhook
curl -X POST "https://instawebhook.com/api/ingest/YOUR_ENDPOINT_TOKEN" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: demo-event-001" \
-d '{"type":"demo.created","data":{"message":"Hello from InstaWebhook"}}'
await fetch("https://instawebhook.com/api/ingest/YOUR_ENDPOINT_TOKEN", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Idempotency-Key": "demo-event-001"
},
body: JSON.stringify({ type: "demo.created", data: { message: "Hello from InstaWebhook" } })
});
Expected response:
{ "ok": true, "event_id": "evt_...", "status": "queued" }
Common failures are invalid endpoint tokens, disabled endpoints, payloads over the configured limit, and rate-limit responses.