{{ $endpoint->id }}
Live request history
waiting for request...
Open endpoint settings to find the URL for the next request.
{{ $selectedRequest->id }}
{{ json_encode($selectedRequest->query_parameters ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
{{ $selectedRequest->body ?? '' }}
{{ json_encode($selectedRequest->json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
Request analysis
Choose a request from the left to inspect its headers, query parameters, body, and parsed payload here.
Browser forwarding
The browser sends this request directly to the target. The target must allow CORS.
Endpoint configuration
Manage the URL for incoming calls and the response sent back to private endpoints.
Forward new incoming requests from this browser tab to a local or remote endpoint. Forwarding runs in the browser and stops when this tab is closed.
The target should answer preflight requests and include Access-Control-Allow-Origin, Access-Control-Allow-Methods, and Access-Control-Allow-Headers.
Any HTTP method is accepted.
{{ $endpoint->webhookUrl() }}
curl -X POST -d '{"event":"test"}' {{ $endpoint->webhookUrl() }}
Configure what the sender receives.
This temporary endpoint expires after {{ $endpoint->expires_at?->diffForHumans(null, true) }}. The default response is 200 {}.