GPU Marketplace — Open Beta

Share GPU Resources
to Next Door

Rent affordable GPUs from providers worldwide, or earn by sharing your idle GPU power. No complex setup — just connect and compute.

0GPUs online
Rp5.000terendah /hr ≈ $0.31/hr
0countries

Why Next Door?

Instant provisioning

One-click GPU rental. Get SSH access and start computing in under 60 seconds.

Up to 80% cheaper

Community-powered GPU supply means prices far below traditional cloud providers.

Secure and isolated

Docker container isolation. Your workload runs in its own sandboxed environment.

Pay per minute

No hourly minimums. Billing starts when you connect, stops when you disconnect.

How it works

For renters
1
Browse marketplace
Filter by GPU model, VRAM, location, and price
2
One-click rent
Choose your Docker image and hit rent
3
Connect and compute
Get SSH credentials instantly, start your workload
For providers
1
Install agent
Download our lightweight agent — auto-detects your GPU
2
Set your price
You control pricing and availability schedule
3
Earn passively
Get paid per minute when someone rents your GPU

Simple pricing

Providers set their own prices. Platform takes 15% fee. No hidden costs.

RTX 3090
24GB VRAM
from Rp4.000/hr
≈ $0.25/hr
Great for training and fine-tuning
Popular
RTX 4090
24GB VRAM
from Rp6.500/hr
≈ $0.41/hr
Best performance per price
A100 80GB
80GB VRAM
from Rp15.000/hr
≈ $0.94/hr
For large models and production

Provider setup guide

Start earning with your GPU in 5 minutes

Prerequisites
NVIDIA GPU (GTX 1080+ / RTX series / A100 / H100)
NVIDIA drivers installed (nvidia-smi working)
Docker + NVIDIA Container Toolkit
Linux, Windows, or macOS (Linux recommended)
Stable internet connection (50+ Mbps recommended)
Step 1
Create a provider account

Register on the Next Door platform with role "provider" or "both".

Via web
Go to https://nextdoor.connectowl.io/login → Register → Select "Share GPUs"
Via API
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"}'
Step 2
Get your claim code

No manual specs — the agent auto-detects your hardware. Just grab a claim code from the dashboard.

Via web
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.

Step 3
Download & auto-register the agent

Download the single binary, then register automatically with your claim code.

Terminal
# 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
Expected output
🔍 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).

Step 4
Start the agent

Run the agent with your machine ID. It will start sending heartbeats to the platform.

Terminal
# 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 &
Expected output
🚀 Next Door Agent starting
Platform: https://nextdoor.connectowl.io
Machine: abc123-def456-...
♥ Heartbeat OK | GPU: 5% | Temp: 42°C | VRAM: 512MB
Step 5
Optional — run as systemd service

For production, create a systemd service so the agent auto-starts on boot.

Terminal
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
You're all set!
Your machine will appear as "online" in the marketplace. When someone rents it, you earn 85% of the rental fee automatically.

Ready to compute?

Join the GPU sharing revolution. Start renting or earning today.