webdev_webhook_tester
Send a test HTTP request to any public webhook URL and inspect the live response. Verify your webhook receiver or HTTP endpoint end-to-end with custom method, headers, and body.
Instructions
Webhook Tester (send an outbound HTTP request to a public URL). Sends a real outbound HTTP request from this server to a user-supplied public webhook URL and returns the live response. Choose the GET/POST/PUT/PATCH/DELETE method, set custom headers, and attach a request body (POST/PUT/PATCH only) to deliver a test payload and inspect what the endpoint replies. Use this to verify a webhook receiver or HTTP endpoint end-to-end; use network_request_headers to only view request headers, network_website_status_checker for a plain status/uptime probe, or webdev_user_agent to parse a UA string. Network tool, openWorld, not read-only and not idempotent: each call hits the target and may mutate remote state. Private, localhost, .local, and reserved-IP targets are blocked; redirects are not followed; body limited to 128 KiB; up to 32 custom headers; 15s timeout. Rate limited (anonymous 5/min, 30/hour, 100/day; authenticated 20/min, 120/hour, 500/day) with CAPTCHA above 15/hour. Returns response status, statusText, head
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute http(s) webhook URL to send the request to. Must resolve to a public IP; localhost, .local, private, and reserved ranges are rejected. | |
| method | No | HTTP method to use. Defaults to POST. Body is only sent for POST, PUT, and PATCH. | POST |
| body | No | Raw request body sent only with POST/PUT/PATCH. Max 131072 bytes (128 KiB). | |
| headers | No | Custom request headers as a name to value map (max 32). Host, content-length, connection, transfer-encoding, expect, and upgrade are blocked; CR/LF stripped from values. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | No | True when the outbound request completed and a response was captured. | |
| data | No | ||
| meta | No |