Quick email sign-up. After a brief approval, get $5 free credit to start.
Choose from 10GB to 141GB VRAM slices. MIG-partitioned GPU.
Jupyter, SSH, or API endpoint. Running in under 3 minutes.
Pay only for what you use. No commitments, no hidden fees. Start with $5 free credit.
Launch and manage GPU instances from your CI/CD pipeline, Python scripts, or any HTTP client. Full REST API with API key authentication.
import requests
# Launch a GPU instance on the Standard tier (20 GB VRAM).
# gpu_tier_id is the numeric ID from GET /v1/gpus/tiers
resp = requests.post(
"https://api.ronai.cloud/v1/instances",
headers={"Authorization": "Bearer rcloud_sk_..."},
json={
"gpu_tier_id": 2,
"instance_type": "jupyter",
},
)
instance = resp.json()["data"]
print(f"Jupyter ready at: {instance['access_url']}")