Network
Connect to a WebSocket endpoint and send/receive messages.
Runs entirely in your browser
Nothing you paste is uploaded. Monaco and Prettier load on demand from this origin.
This tool makes live network requests
Unlike every other SafePaper tool, this one talks to the server you point it at — directly from your browser. Requests are still sent from your device only, but they are subject to the target's CORS policy, so some endpoints will refuse cross-origin calls.
Connection
Send message
Messages
Connect and send a message to see the exchange.
There is no upload endpoint — your files are processed in this browser tab. Open your network tab and check. See how it stays private.
How to WebSocket tester
- Enter a URL. Type a ws:// or wss:// endpoint.
- Connect. Open the connection from your browser.
- Send & watch. Send messages and view incoming frames live.
Debugging a realtime feature means poking at the socket directly — connecting, sending a message, watching what comes back. A browser tester does this without extra tooling and shows frames as they arrive.
For request/response APIs use the HTTP client; to format JSON messages you send or receive, the JSON toolkit.
Frequently asked questions
What URL scheme do WebSockets use?
ws:// for plain and wss:// for TLS-secured connections. Use wss:// in production; many servers require it.
Where does the connection go?
Directly from your browser to the server you enter. We don't proxy it, so only your target endpoint is contacted.
Is my traffic stored?
No. The tester runs in your browser and doesn't route messages through us.
Related tools
- HTTP clientSend HTTP requests directly from your browser (subject to CORS).
- JSON toolkitFormat, validate, minify, and explore JSON in a collapsible tree — all in your browser.
- cURL to codeTurn a cURL command into fetch, axios, Python requests, or Go — locally.
- URL parserBreak a URL into protocol, host, path, and editable query parameters.