Global Request Bin

Capture any HTTP request instantly

Send GET, POST, PUT, PATCH, DELETE, or HEAD requests to one public endpoint and inspect method, headers, query params, form values, raw body, and parsed JSON in one place.

How to use

Use this capture URL in webhooks, scripts, or app callbacks:

https://aspcode.net/request-bin/capture

You can append any path to organize traffic:

https://aspcode.net/request-bin/capture/payments/stripe

Examples

curl "https://aspcode.net/request-bin/capture?source=landing&id=42"
curl -X POST "https://aspcode.net/request-bin/capture/order/new" -H "Content-Type: application/json" -d '{"orderId":123,"status":"created"}'
curl -I "https://aspcode.net/request-bin/capture/health"

What happens on each call

  • HTTP method and full requested path
  • All headers
  • Query parameters and posted form values
  • Raw payload body (up to 1 MB)
  • Pretty-printed JSON body when valid JSON is sent
  • Client IP and user-agent

Stateless mode: each request renders its own result page immediately and is not stored.

Need persistence and JSON mode? Create an account and use Personal Request Bins in the dashboard.