Secure tunnels for sharing your local development environment instantly.
Everything you need for secure local development sharing
Generate a public URL for your localhost in seconds. No installation required, just use your access token.
All connections are encrypted. Your data stays safe with SSL/TLS protection on every tunnel.
Track all your active tunnels from a single dashboard. See connections, bandwidth, and activity in real-time.
Get started in four simple steps
Sign up and get access to your personal dashboard where you can manage all your tunnels.
Create an access token from your dashboard. This token authenticates your tunnel requests.
Use the CLI or API with your token to create a tunnel to your localhost. Get a public URL instantly.
Copy the generated URL and share it with anyone. They can access your local app through the secure tunnel.
curl -X POST https://tunnelgo.io/api/tunnel \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{"port": 3000}'
{
"success": true,
"tunnel_url": "https://abc123.tunnelgo.io",
"local_port": 3000,
"expires_at": "2025-10-05T23:59:59Z"
}
Pro Tip: Replace YOUR_TOKEN with the access token from your dashboard. Your local server on the specified port will be accessible via the generated tunnel URL.