Compute

My Rentals

Manage your active GPU rentals

Use via API

Rent from code or your editor

The same rentals, over HTTP with your API key: list GPUs, start a rental, read its connection details and destroy it. Or drive it from Claude Code, Claude Desktop or Cursor through the MCP server.

rental api
# GPUs you can rent now, cheapest first
curl https://paraloncloud.com/api/v1/gpus \
  -H "Authorization: Bearer prlc_your_key_here"

# Rent one (the key needs the 'rental' scope)
curl -X POST https://paraloncloud.com/api/v1/rentals \
  -H "Authorization: Bearer prlc_your_key_here" \
  -H "Idempotency-Key: my-run-001" \
  -H "Content-Type: application/json" \
  -d '{"node_id": "<from /gpus>", "type": "jupyter"}'