๐ Web Tunnels
Expose your localhost to the internet instantly. No agents, no installs, no port forwarding. Powered by Cloudflare for security and redundancy.
What Are Web Tunnels?
Web Tunnels create a secure, temporary public URL that routes traffic to a local server running on your machine. Perfect for:
- Live demos โ Show a client your work without deploying
- Webhook testing โ Receive Stripe, GitHub, or Slack webhooks on localhost
- Remote access โ Temporarily expose internal tools behind corporate firewalls
- API development โ Let teammates test your local API
- IoT devices โ Access home automation dashboards remotely
How It Works
- Start your local server (e.g.,
localhost:3000) - Create a tunnel from your 25cent.cloud dashboard or via API
- Get a public URL like
abc123.tunnel.25cent.cloud - Share the URL โ anyone can access your local server
- Tunnel auto-expires when time runs out (pay-as-you-go)
Pricing
1 quarter per hour (25ยข/hour). No monthly fees, no per-seat licensing, no bandwidth limits. Pay only for what you use.
One-Click Setup
Unlike ngrok or Cloudflare Tunnel, there are no agents or daemons to install:
- Mac/Linux: Click "Create Tunnel" in the dashboard โ that's it
- Windows: Download a tiny executable (~500KB) that runs a single command โ no installer, no PATH changes, no admin rights
Security
- All traffic flows through Cloudflare's global network โ DDoS protected, SSL encrypted
- Tunnels are ephemeral โ they auto-expire and cannot be reused
- Optional password protection on tunnel URLs
- No permanent DNS records created โ zero footprint after expiry
API Usage
POST /api/tunnel/create
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json
{
"localPort": 3000,
"duration": 2,
"enablePassword": true,
"password": "demo123"
}
vs. Competitors
| Feature | 25cent.cloud | ngrok | Cloudflare Tunnel |
|---|---|---|---|
| Agent Required | โ No | โ Yes | โ Yes (cloudflared) |
| Monthly Fee | None (25ยข/hour) | $10/month | Free (limited) |
| Auto-Expires | โ Yes | โ No | โ No |
| Password Protected | โ Yes | Paid only | โ No |