Get Started with GPUniq
Set up your account and launch your first GPU instance in minutes to begin your compute tasks.
Prerequisites
Before you begin, ensure you have:
- A valid email address for account verification
- Basic knowledge of SSH for connecting to instances
- Funds for GPU rental (USDT or rubles via YooKassa)
GPUniq supports instant registration with Google OAuth for quick onboarding.
Create Your Account
Follow these steps to sign up and verify your email.
Sign Up
Visit gpuniq.com and click Sign Up.
Fill in your email, username, and password. Alternatively, use Google Sign-In for instant access.
Verify Email
Check your inbox for a verification code from GPUniq.
Enter the 6-digit code to activate your account.
Log In
Return to the dashboard and log in with your credentials.
You'll land on the marketplace overview.
Add Funds to Your Account
GPUniq supports multiple payment methods.
- Go to Balance in your dashboard
- Click Deposit with Crypto
- Send USDT (TRC20) to the provided address
- Wait for blockchain confirmation (~2-5 minutes)
- Go to Balance in your dashboard
- Enter amount in rubles
- Complete payment via YooKassa
- Balance updates instantly
Navigate the Marketplace
The GPUniq marketplace provides access to hundreds of GPUs worldwide.
Browse GPUs
Filter by GPU model, VRAM, location, and price.
My Instances
View and manage your active rentals.
Billing
Track usage, costs, and manage payments.
Rent Your First GPU
Select a powerful GPU and deploy it in seconds.
Filter GPUs
Use the marketplace filters:
- GPU Model: RTX 4090, A100, H100, etc.
- VRAM: Minimum/maximum GB
- Price: Hourly rate range
- Location: Geographic region
- Verified: Show only verified providers
Select GPU
Click on a GPU card to view details including:
- Full hardware specs (RAM, CPU, storage)
- Provider reliability score
- Available port range
Rent
Click Rent Now. Choose pricing type:
- Per minute (most flexible)
- Per hour
- Per day/week/month (discounts available)
Your instance starts immediately.
Connect to Your Instance
Once rented, you'll receive SSH access credentials.
Use the SSH command from your dashboard:
ssh root@<host> -p <port>
# Enter the password shown in your dashboard
Launch programmatically for automation:
curl -X POST https://api.gpuniq.com/v1/marketplace/order \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent_id": 123,
"gpu_required": 1,
"pricing_type": "minute"
}'
const response = await fetch('https://api.gpuniq.com/v1/marketplace/order', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
agent_id: 123,
gpu_required: 1,
pricing_type: 'minute'
})
});
import requests
response = requests.post(
'https://api.gpuniq.com/v1/marketplace/order',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
json={
'agent_id': 123,
'gpu_required': 1,
'pricing_type': 'minute'
}
)
Basic Configuration
Common parameters when renting GPUs:
The ID of the GPU/agent to rent (from marketplace list).
Number of GPUs to reserve (default: all available on the machine).
Billing interval: minute, hour, day, week, or month.
For AI tasks, most GPUs come with CUDA pre-installed. Verify with:
nvidia-smi
Verified providers (indicated by a badge) have been tested for reliability and uptime.
Next Steps
- Monitor your instance in the dashboard
- Stop/resume instances to pause billing
- Explore the API for automation
- Connect your own GPU to earn as a provider
Last updated Jan 9, 2026