Getting Started
Capture your first HTTP request in under a minute. No installation required.
1. Sign up
Go to requestbin.net/sign-up and create a free account with your email or GitHub/Google OAuth.
2. Create your first bin
Navigate to Your Bins in the top navigation, then click Create Bin. Give it a name like "My First Bin" and click create.
Your bin is instantly ready to receive HTTP requests. You will see a unique URL like:
https://abc123def456.d.requestbin.net
3. Copy the bin URL
Click the copy icon next to the bin URL. Use this URL as your webhook endpoint in any third-party service (Stripe, GitHub, Slack, etc.) or for manual testing.
4. Send a test request
Open your terminal and send a test request using cURL:
curl -X POST https://YOUR_BIN_ID.d.requestbin.net \
-H "Content-Type: application/json" \
-d '{"event": "test", "data": {"hello": "world"}}'5. View the captured request
Go back to your bin in the dashboard. You will see the request appear in real time with full details: HTTP method, headers, query parameters, and body. Click on any request to inspect it in detail.
6. Next steps
- Replay requests to any URL for debugging
- Set up forwarding rules to auto-forward webhooks to your local server
- Browse sample webhooks to test with real provider payloads
- Create an API key to integrate RequestBin into your workflow