Rent affordable GPUs from providers worldwide, or earn by sharing your idle GPU power. No complex setup — just connect and compute.
One-click GPU rental. Get SSH access and start computing in under 60 seconds.
Community-powered GPU supply means prices far below traditional cloud providers.
Docker container isolation. Your workload runs in its own sandboxed environment.
No hourly minimums. Billing starts when you connect, stops when you disconnect.
Providers set their own prices. Platform takes 15% fee. No hidden costs.
Start earning with your GPU in 5 minutes
Register on the Next Door platform with role "provider" or "both".
Go to https://nextdoor.connectowl.io/login → Register → Select "Share GPUs"curl -X POST https://nextdoor.connectowl.io/api/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"name":"Your Name","email":"you@email.com","password":"yourpass","role":"provider"}'No manual specs — the agent auto-detects your hardware. Just grab a claim code from the dashboard.
Dashboard → My Machines → + Add Machine → copy your claim code (e.g. ND-7F3A-22K9)The claim code is valid for 15 minutes and links the agent to your account.
Download the single binary, then register automatically with your claim code.
# Linux (amd64)
wget -O nextdoor-agent https://nextdoor.connectowl.io/download/nextdoor-agent-linux
chmod +x nextdoor-agent
# Windows: /download/nextdoor-agent-windows.exe
# macOS Apple Silicon: /download/nextdoor-agent-macos-arm64
# Auto-detect GPU/CPU/RAM and register
./nextdoor-agent init --claim ND-7F3A-22K9🔍 Detecting GPU...
✅ Found: NVIDIA RTX 4090 (24576MB VRAM)
🔗 Claiming machine with code ND-7F3A-22K9 ...
✅ Machine registered!
MACHINE_ID: abc123-...
AGENT_TOKEN: tok_...Then set your price on the dashboard (machine is a draft until priced).
Run the agent with your machine ID. It will start sending heartbeats to the platform.
# Start agent (foreground)
PLATFORM_URL=https://nextdoor.connectowl.io \
MACHINE_ID=your-machine-uuid-here \
AGENT_TOKEN=your-agent-token-here \
./nextdoor-agent start
# Or run as background service
PLATFORM_URL=https://nextdoor.connectowl.io \
MACHINE_ID=your-machine-uuid-here \
AGENT_TOKEN=your-agent-token-here \
nohup ./nextdoor-agent start > nextdoor-agent.log 2>&1 &🚀 Next Door Agent starting
Platform: https://nextdoor.connectowl.io
Machine: abc123-def456-...
♥ Heartbeat OK | GPU: 5% | Temp: 42°C | VRAM: 512MBFor production, create a systemd service so the agent auto-starts on boot.
sudo cat > /etc/systemd/system/nextdoor-agent.service << 'SERVICE'
[Unit]
Description=Next Door GPU Agent
After=network.target docker.service
[Service]
Type=simple
Environment=PLATFORM_URL=https://nextdoor.connectowl.io
Environment=MACHINE_ID=your-machine-uuid-here
Environment=AGENT_TOKEN=your-agent-token-here
ExecStart=/usr/local/bin/nextdoor-agent start
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
SERVICE
sudo systemctl daemon-reload
sudo systemctl enable nextdoor-agent
sudo systemctl start nextdoor-agent
# Check status
sudo systemctl status nextdoor-agent