Bring your server over

Migrate your existing server to InstantNode in minutes.

Try the Server Importer

The InstantNode API

One Personal Access Token, your whole account: read services, control power, provision servers, manage backups and firewall rules, run game servers, bots, webspaces and domains, and read your billing. This page is generated live from our OpenAPI 3 schema - raw spec at /openapi.json.

instantnode.eu/api/pat Bearer token auth JSON in, JSON out OpenAPI 3.0.3
103
Endpoints
9
Resource groups
13
Schemas
REST / JSON
Over HTTPS

Get started

1

Create a token

In the panel under Profile → API. Tokens look like inpat_… - treat them like passwords, revoke any time.

2

Send it as a Bearer token

Add an Authorization: Bearer header to every request.

3

Make your first call

List your services, then explore all 103 endpoints in the reference below.

Good to know

Every response carries an ok boolean. Panel-only actions return 403 not_available_via_api; the old reseller API is 410 Gone.

bash
$ curl -H "Authorization: Bearer inpat_…" \
     https://instantnode.eu/api/pat/v1/services

# 200 OK
{
  "ok": true,
  "services": [
    {
      "id": "d79f683f…",
      "type": "kvm",
      "status": "running"
    }
  ]
}

Full reference · try requests live with your token