Test a webhook receiver
Catch incoming webhook calls and inspect their headers and body in real time.
When to use this
Integrating a third-party webhook (Stripe, GitHub, a payment provider) means you need a URL to point it at — and a way to see exactly what it sends. Create a POST mock, give its URL to the provider, and watch every call land in the live request inspector: method, headers, query, body.
Create the mock
curl -X POST https://quickmock.dev/api/mocks \
-H 'Content-Type: application/json' \
-d '{
"method": "POST",
"response_status": 200,
"response_body": "{\"received\":true}"
}'
Call it
curl -X POST -H 'Content-Type: application/json' -d '{"event":"payment.succeeded"}' https://quickmock.dev/m/<slug>
Open the mock page to watch every incoming request — method, headers, query, and body — land in the live inspector.
What you get
{"received":true}