webpipes.net webpipes.net

Stream JSON in Real-Time

Simple web pipes for streaming JSON messages via Server-Sent Events. Create a pipe, get two URLs, and start streaming.

1

Create a Pipe

Enter your email and instantly get a management dashboard.

2

Get Your URLs

Receive a write URL for sending data and a read URL for receiving events.

3

Start Streaming

POST JSON to write, connect to read URL to receive real-time events.

Ready to Get Started?

Create your first pipe in seconds. No signup required, just enter your email.

Messages are streamed in real-time and not stored.

How It Works

Simple curl commands to send and receive messages

Send 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"}'

Receive Events

Connect to your read URL via SSE:

curl --no-buffer \
  "https://webpipes.net/api/v1/pipe?read_token=READ_TOKEN"