Getting started with ReplayHooks
ReplayHooks gives you a persistent URL that captures every HTTP request — method, headers, query, and body — then shows it in a live inspector.
1. Get a URL
Open replayhooks.com, click Get your webhook URL, or create an account and add an endpoint in the app. Your ingest URL looks like:
https://hook.replayhooks.com/x/<your-token>
2. Send a test event
curl -X POST https://hook.replayhooks.com/x/<your-token> \
-H 'Content-Type: application/json' \
-d '{"hello":"world"}'
Or use the Send test event button in the empty inspector.
3. Inspect
The event appears in the left rail within ~200ms. Open it to see a collapsible JSON tree, headers, query params, and a copy-as-cURL command.
◈ inspector
Events
POST/hooks
just now
POST/…
PayloadHeadersQueryRaw
type: "hello.world"
{
"hello": "world"
}4. Keep the URL
Anonymous demo URLs expire after 24 hours. Click Claim this URL, sign up, and the endpoint plus history move into your workspace.