EQVPS

Reseller API & MCP (white-label)

Build your own VPS brand on EQVPS: your plans, your prices, your clients. 30 reseller tools over the same MCP endpoint, authenticated with a reseller token (rk_).

Auth: get a reseller token (rk_…) in the Partners cabinet (API / MCP page) and send it as Authorization: Bearer rk_…. One MCP endpoint, role-filtered by token — a reseller token exposes the 30 reseller_* tools.

Typical flow

Create a plan, add a client, order a VM for them; deliver the access from your own brand.

// Reseller token (rk_...) from the Partners cabinet -> Authorization: Bearer rk_...
// One MCP endpoint, role-filtered: a reseller token exposes the 30 reseller_* tools.
reseller_create_plan({ name, cores, ram_gb, disk_gb, ipv4, location, markup })
reseller_add_client({ email }) -> { client_id }
reseller_order_for_client({ plan_id, client_id, os_id? })   // os_id: see list_plans catalog
reseller_vm_details({ service_id }) -> { access, password }  // deliver to your client

os_id is optional — omit for the location's default OS. For a specific OS, use an os_id from the public list_plans catalog; it resolves to the right image per location.

Operating systems & os_id

14 Linux images are available (below). Pass os_id in reseller_order_for_client — take it from the public list_plans catalog. Note: available_os may list different ids per location; the os_id from list_plans resolves to the correct image for the plan's location. Omit os_id to use the location's default OS.

Ubuntu 24.04Ubuntu 22.04Ubuntu 20.04Debian 13Debian 12Debian 11AlmaLinux 9Rocky Linux 9CentOS 7Fedora 41openSUSE Leap 15.6Alpine LinuxArch LinuxCachyOS

VM statuses

active — running. provisioning — being created (brief async window right after ordering). suspended — paused (e.g. you suspended the client, or non-payment); reactivate with reseller_unsuspend_client. cancelled — terminated (VM removed).

Plans
reseller_list_plansList your white-label plans.
reseller_create_planCreate a plan (vCPU/RAM/NVMe/IPv4 + your markup + location).
reseller_edit_planEdit a plan's spec or markup.
reseller_archive_planArchive a plan (hidden from ordering).
reseller_restore_planRestore an archived plan.
Clients
reseller_list_clientsList your end-clients.
reseller_add_clientAdd an end-client (returns client_id).
reseller_edit_clientEdit an end-client.
reseller_suspend_clientSuspend an end-client.
reseller_unsuspend_clientUnsuspend an end-client.
Order
reseller_order_for_clientOrder a VM for a client by plan_id + client_id. Spends your wholesale balance.
VMs
reseller_list_vmsList client VMs (your plan name + status).
reseller_service_statusProvisioning status of client VMs (active/provisioning/suspended).
reseller_vm_detailsVM details: IP/hostname/root password (white-label delivery). Reveals password once.
reseller_vm_powerStart/stop/reboot a client VM.
reseller_vm_set_hostnameSet a client VM hostname.
reseller_vm_reset_passwordReset a client VM root password (returns a new one).
reseller_vm_metricsCPU/RAM/network/disk over time.
reseller_vm_reinstallReinstall the OS on a client VM (destructive — wipes all data). Pick a new os_id from reseller_list_os.
reseller_vm_cancelTerminate a client VM.
OS
reseller_list_osList available OS images (os_id + name) for order/reinstall. Resolves per plan location.
Balance
reseller_check_balanceYour wholesale prepaid balance.
Tickets
reseller_create_ticketOpen a support ticket (optional service_id).
reseller_list_ticketsList your tickets.
reseller_get_ticketRead a ticket thread.
reseller_reply_ticketReply on a ticket.
reseller_close_ticketClose a ticket.

Comments

No comments yet. Be the first.

Leave a comment

Comments are moderated before they appear.