Quickstart
Get up and running in 30 seconds. No account required.
Step 1: Create a Bin
Go to spidylabs.com and click "Create a Bin". You'll be taken to a new bin with a unique URL like:
https://spidylabs.com/hook/a8x3kf2m
This URL is ready to receive requests immediately.
Step 2: Send a Request
Open a terminal and send a test webhook:
curl -X POST https://spidylabs.com/hook/YOUR_BIN_SLUG \
-H "Content-Type: application/json" \
-d '{"event": "test", "message": "Hello SpidyLabs!"}'
Replace YOUR_BIN_SLUG with the slug from your bin URL.
Step 3: Inspect It
Switch back to your browser. The request appears instantly in the left panel. Click on it to see:
- Headers — All HTTP headers including content type, user agent, and custom headers.
- Body — Your JSON payload with syntax highlighting.
- Query — Any URL query parameters.
That's it! You're now inspecting webhooks in real time.
Next Steps
- Your First Webhook — A more detailed walkthrough with real-world examples.
- Request Inspector — Learn about all the inspection features.
- Sign in with GitHub to save your bins and access them from anywhere.