Skip to content

Documentation

Guides, API reference and the answers to the questions our support queue sees most.

Getting started

Create an account, add credit and deploy your first virtual machine.

Virtual machines

Sizing, images, SSH keys, resizing, snapshots and the recovery console.

App Spaces

Connect a repository, configure builds, set env vars and attach a domain.

API reference

Authentication, rate limits and every endpoint behind this console.

CLI and Terraform

Install the CLI, authenticate, and manage infrastructure as code.

Billing

How hourly charges accrue, invoices, tax details and spend caps.

API quickstart

Every action in the console maps to a REST endpoint. Authenticate with a scoped key and go.

# List every virtual machine on the account
curl https://api.fastrhino.net/v1/vms \
  -H "Authorization: Bearer $FASTRHINO_TOKEN"

# Create one in Falkenstein
curl -X POST https://api.fastrhino.net/v1/vms \
  -H "Authorization: Bearer $FASTRHINO_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "hostname": "web-01",
    "provider": "rhinovm",
    "region": "de-fsn",
    "plan": "rn-3",
    "image": "ubuntu-24-04",
    "ssh_keys": ["laptop"]
  }'

Rate limit: 600 requests per minute per key. Errors return application/problem+json.