Everything you need to get started with AITaoHoo.
Sign up at aitaohoo.com/register. All new accounts include a 14-day Pro trial with full access to all features.
curl -fsSL https://storage.googleapis.com/aitaohoo-releases/cli/latest/aitaohoo-linux-amd64 -o aitaohoo
chmod +x aitaohoo
sudo mv aitaohoo /usr/local/bin/aitaohoo auth login
# Enter your API key from the dashboard Settings page# Expose a local web server on port 3000
aitaohoo tunnel http 3000
# With a custom subdomain (Pro tier)
aitaohoo tunnel http 3000 --subdomain myappAITaoHoo CLI is available for Linux (x86_64, ARM64), macOS (Intel, Apple Silicon), and Windows (x86_64). Pre-built binaries are available on the download page.
# x86_64
curl -fsSL https://storage.googleapis.com/aitaohoo-releases/cli/latest/aitaohoo-linux-amd64 -o aitaohoo
chmod +x aitaohoo
sudo mv aitaohoo /usr/local/bin/
# ARM64
curl -fsSL https://storage.googleapis.com/aitaohoo-releases/cli/latest/aitaohoo-linux-arm64 -o aitaohoo
chmod +x aitaohoo
sudo mv aitaohoo /usr/local/bin/Since AITaoHoo is not distributed through the Mac App Store, macOS will show a warning: "Apple could not verify AITaoHoo is free of malware." This is normal for apps downloaded outside the App Store.
Right-click (or Control+click) on AITaoHoo.app, select "Open" from the context menu, then click "Open" in the dialog that appears. You only need to do this once.
# Remove the quarantine attribute
xattr -cr /Applications/AITaoHoo.app
# Then open the app normallyAPI keys are used to authenticate the CLI with the AITaoHoo server. You can create and manage API keys from the Settings page in the dashboard. Each key has a "moji_" prefix for identification.
# Interactive login
aitaohoo auth login
# Login with API key directly
aitaohoo auth login --key moji_your_api_key_hereaitaohoo auth statusHTTP tunnels expose a local web server through a public URL with automatic SSL termination. This is the most common tunnel type.
# Basic HTTP tunnel
aitaohoo tunnel http 3000
# With custom subdomain
aitaohoo tunnel http 3000 --subdomain myapp
# Access at: https://myapp.gateway.aitaohoo.comTCP tunnels forward raw TCP traffic, useful for databases, game servers, SSH, or any non-HTTP protocol.
# TCP tunnel for a database
aitaohoo tunnel tcp 5432
# TCP tunnel for SSH
aitaohoo tunnel tcp 22Active tunnels are displayed in the dashboard under the Tunnels page. You can monitor real-time traffic, see connection counts, and close tunnels from the web UI or by pressing Ctrl+C in the terminal.
Every tunnel gets a subdomain under gateway.aitaohoo.com. Free tier users get random subdomains (e.g. swift-fox-123). Pro and Enterprise users can reserve custom subdomains.
Reserve subdomains from the dashboard Subdomains page. Reserved subdomains are permanently linked to your account and can be used across tunnel sessions.
aitaohoo tunnel http 3000 --subdomain myapp
# Always accessible at: https://myapp.gateway.aitaohoo.comThe Analytics page shows real-time and historical data for all your tunnels including total requests, bandwidth usage, average response time, and status code breakdown.
Requests per minute, total bandwidth (upload/download), response time percentiles, HTTP status code distribution, geographic distribution of clients, and top paths by request count.