Simple web pipes for streaming JSON messages via Server-Sent Events. Create a pipe, get two URLs, and start streaming.
Enter your email and instantly get a management dashboard.
Receive a write URL for sending data and a read URL for receiving events.
POST JSON to write, connect to read URL to receive real-time events.
Create your first pipe in seconds. No signup required, just enter your email.
Messages are streamed in real-time and not stored.
Simple curl commands to send and receive messages
POST JSON to your write URL:
curl -X POST \
"https://webpipes.net/api/v1/pipe?write_token=WRITE_TOKEN" \
-H "Content-Type: application/json" \
-d '{"hello": "world"}'Connect to your read URL via SSE:
curl --no-buffer \
"https://webpipes.net/api/v1/pipe?read_token=READ_TOKEN"