Webhook Tester
Use HookTray to test webhook requests before your real endpoint is ready. Open the inspector, copy the temporary URL, send a request, and review exactly what your integration sends.
Quick webhook test
- Open HookTray and copy your temporary hook URL.
- Send a request from curl or configure it in your webhook provider.
- Inspect headers, query parameters, body content, and request timing.
curl -X POST "https://hooktray.com/hooks/YOUR_TOKEN" \
-H "content-type: application/json" \
-d '{"event":"test","source":"curl"}'Useful for provider setup
Webhook providers often differ in event names, signature headers, retry behavior, and payload structure. Testing with HookTray helps you see the real request before committing code to your application handler.
Verify signature headers are present
Inspect JSON payload shape
Check content type and custom headers
Debug provider test events and retries