Resell Trading VPS with the MarginVPS Reseller API
Top up your balance, then create and manage MT4 & MT5 VPS for your clients straight from your own website, EA portal, or dashboard — in any language.
How the Reseller API Works
Request API Access
Email us about your business. We enable reseller access and issue your API key.
Top Up Your Balance
Add funds to your MarginVPS account. VPS you create through the API are charged from this balance.
Create VPS via API
Send a request with the plan and location — a ready-to-trade Windows VPS is provisioned for your client.
Manage & Bill Your Way
Reboot, reinstall, renew, or delete servers from your own panel, and charge your clients your own price.
What You Can Do via API
Everything you need to run your own VPS service, without managing hardware.
Provision on Demand
Create MT4/MT5-ready VPS in any of our 7 locations the moment your customer pays.
Full Lifecycle Control
Start, stop, reboot, reinstall, renew, and terminate servers with simple API calls.
Status & Credentials
Fetch server status, IP address, and login details to show inside your own dashboard.
Balance & Usage
Check your prepaid balance and active servers so you always know your costs.
Works with Every Popular Language
A simple HTTPS/JSON REST API — if your stack can make an HTTP request, it can create a VPS.
- Node.js
- Python
- PHP
- Go
- C# / .NET
- Java
- Ruby
- cURL
// Illustrative example — full reference shared with API access
const res = await fetch(`${API_BASE}/servers`, {
method: "POST",
headers: {
Authorization: `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ plan: "standard", location: "london" }),
});
const server = await res.json();# Illustrative example — full reference shared with API access
import requests
server = requests.post(
f"{API_BASE}/servers",
headers={"Authorization": f"Bearer {API_KEY}"},
json={"plan": "standard", "location": "london"},
).json()Popular Use Cases
EA Bundles
Sell your Expert Advisor with a pre-configured VPS included, delivered automatically at checkout.
White-Label VPS Hosting
Launch your own branded forex VPS service without owning a single server.
Account Management & PAMM
Spin up isolated servers per client or per strategy and manage them all from your own tools.
Get Reseller API Access
For API documentation, reseller pricing, and more details, email us at support@marginvps.com.
Email for API AccessReseller API FAQ
How does the MarginVPS reseller API work?
You top up your MarginVPS account balance, then use your API key to create and manage VPS servers for your own customers. Each server is charged from your balance, and you bill your clients however you like.
Which programming languages are supported?
The API is a standard HTTPS/JSON REST interface, so it works with any language that can make HTTP requests — Node.js, Python, PHP, Go, C#, Java, Ruby, and more.
Can I sell VPS under my own brand?
Yes. The reseller API is built for white-label use. Your customers deal with your brand and your pricing while MarginVPS runs the infrastructure.
Is there a minimum top-up or volume requirement?
Terms depend on your expected volume. Email support@marginvps.com and we'll share reseller pricing and requirements.
Should I choose the API or the affiliate link?
Choose the affiliate link if you just want to earn commission on referrals with zero setup. Choose the API if you want to own the customer relationship, set your own prices, and automate VPS delivery.