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.
Get started
Create a token
In the panel under Profile → API. Tokens look like inpat_… - treat them like passwords, revoke any time.
Send it as a Bearer token
Add an Authorization: Bearer header to every request.
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.
$ 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