fetch supports WebSocket connections for real-time bidirectional communication.
Connect using ws:// or wss:// URL schemes:
fetch ws://echo.websocket.events
fetch wss://echo.websocket.eventsUse -d or -j to send a single message on connect:
fetch ws://echo.websocket.events -d "hello"
fetch ws://echo.websocket.events -j '{"type": "subscribe", "channel": "updates"}'Pipe lines from stdin — each line is sent as a separate text message, including empty lines:
echo "hello" | fetch ws://echo.websocket.events
printf "msg1\nmsg2\n" | fetch ws://echo.websocket.eventsfetch connects before reading piped input, streams each line as it arrives, and
continues printing server messages after stdin reaches EOF until the server
closes the connection.
When stdin/stdout/stderr are terminals, fetch opens an interactive prompt. Type a message and press Enter to send it. Use Ctrl+C or Ctrl+D to exit.
Control this behavior with --ws-interactive:
# Automatically use the prompt when attached to a terminal
fetch ws://api.example.com/stream --ws-interactive auto
# Require the prompt, failing if stdio is not a terminal
fetch ws://api.example.com/stream --ws-interactive on
# Disable the prompt and stream server messages to stdout
fetch ws://api.example.com/stream --ws-interactive off- Text messages: Written to stdout. JSON messages are automatically formatted when connected to a terminal.
- Binary messages: A
[binary N bytes]indicator is printed to stderr. - Formatting: Use
--format onto force JSON formatting, or--format offto disable it.
# Force JSON formatting
fetch ws://api.example.com/stream --format on
# Disable formatting
fetch ws://api.example.com/stream --format offUse -v flags to see connection details:
# Show response status and headers
fetch -v ws://echo.websocket.events -d "hello"
# Show request and response headers with prefixes
fetch -vv ws://echo.websocket.events -d "hello"Header-based authentication options work with WebSocket connections; headers are sent during the HTTP upgrade handshake. Digest authentication (--digest) is not supported for WebSocket requests because it requires a challenge/response retry flow before the upgrade completes.
fetch --bearer mytoken ws://api.example.com/ws
fetch --basic user:pass ws://api.example.com/ws
fetch -H "Authorization: Bearer mytoken" ws://api.example.com/wsSpecify WebSocket subprotocols via the Sec-WebSocket-Protocol header:
fetch -H "Sec-WebSocket-Protocol: graphql-ws" wss://api.example.com/graphqlWebSocket connections honor --dns-server for direct TCP connections and for
local target resolution through plain socks5:// proxies. Use socks5h:// when
the SOCKS proxy should resolve the target hostname remotely.
The --timeout flag applies to the WebSocket handshake only. The connection stays open until the server closes or stdin EOF:
fetch --timeout 5 ws://api.example.com/wsUse --connect-timeout to bound WebSocket connection setup phases such as custom DNS resolution, TCP connect, proxy CONNECT or SOCKS negotiation, and TLS handshakes. When both timeout flags are set, the connect timeout is capped by the remaining --timeout budget:
fetch --connect-timeout 2 --timeout 10 wss://api.example.com/ws- WebSocket requires HTTP/1.1 for the upgrade handshake. Using
--http 2or--http 3with WebSocket is not supported. - WebSocket (
ws:///wss://) cannot be combined with--grpc,--form,--multipart,--xml,--edit, output-file/clipboard flags, or retry flags. - Binary message content is not displayed; only a size indicator is shown.
- The pager is disabled for WebSocket output.