SANDBOX — this is a test environment. No servers are actually deployed and no real payments are charged.
Summer Sale30% off your first term — VPS from $5 $3.50/mo, renews at $5/mo.Summer Sale ends in
Developers · API in early access

The Nxeon REST API

A clean REST API at /api/v1 with scoped bearer tokens you create and revoke yourself. Read your servers over HTTP today; write endpoints for the full lifecycle are rolling out.

GET /api/v1/servers
$ curl https://nxeon.cloud/api/v1/servers \
    -H "Authorization: Bearer nxe_live_…"

{
  "data": [
    {
      "id": "srv_8fk21a",
      "name": "web-prod",
      "status": "running",
      "plan": "nvme-4",
      "region": "eu-central",
      "ipv4": "203.0.113.42",
      "created_at": "2026-07-24T09:41:00Z"
    }
  ],
  "has_more": false
}
What you can automate

Your infrastructure, as code

Drive Nxeon from your own scripts, CI pipelines, and tools. Reading your fleet is live today; the write endpoints below are rolling out toward full dashboard parity.

List & inspect servers

Read your servers, their status, specs, and IPs over HTTP today — the same data the dashboard shows, ready for your monitoring and scripts.

Scoped API tokens

Create and revoke bearer tokens from the dashboard, each carrying only the scopes it needs. Rotate freely without touching the rest of your account.

Lifecycle control

Create, resize, reinstall, and destroy servers programmatically. Read access is live now; these write endpoints are rolling out next.

Usage & billing

Read wallet balance and usage so automation can track spend and stay within budget. On the roadmap alongside the write endpoints.

Scoped tokens

Least-privilege by design

Generate a token for exactly the job in front of you. Give a deploy script write access to servers and nothing else, hand a dashboard read-only billing scope, and revoke any token the moment it is no longer needed.

  • Create and revoke tokens in the dashboard
  • Attach only the scopes each token needs
  • Rotate keys without downtime

Available scopes

  • servers:read

    List and inspect servers, their status, and specs.

    Live
  • servers:write

    Create, resize, reinstall, and delete servers.

    Soon
  • storage:write

    Provision, attach, and detach block-storage volumes.

    Soon
  • billing:read

    Read wallet balance, usage, and invoices.

    Soon
Built for automation

Fits the way you already work

Standard REST, predictable JSON, and bearer-token auth — no SDK required to get started, and easy to wrap in whatever language you like.

Plain HTTP + JSON

Every endpoint is standard REST returning predictable JSON. Call it with curl, fetch, or your favourite HTTP client — no proprietary tooling to learn.

CI/CD friendly

Drop a scoped token into your pipeline secrets and provision ephemeral environments, run tests, and tear them down automatically on every push.

Wallet-based billing

Usage draws from your account wallet, so scripted fleets bill exactly like the dashboard — no surprise per-call charges to reason about.

Deploy your first server in under a minute

No credit card required to get started. Spin up a VPS, break things, and only pay for what you keep running.