Vxtry API Docs.
The Vxtry API allows you to programmatically manage your hosting infrastructure, automate deployments, and integrate our cloud services directly into your own applications.
Authentication
All API requests must be authenticated using a Bearer token. You can generate your API keys in the Client Area under Security settings.
# Example request
curl -X GET "https://api.vxtry.com/v1/nodes" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "https://api.vxtry.com/v1/nodes" \
-H "Authorization: Bearer YOUR_API_KEY"
Create Server
Provision a new cloud instance instantly using the following POST endpoint.
POST /v1/servers/create
{
"plan": "pro-x1",
"region": "in-mum-1",
"os": "ubuntu-22.04"
}
{
"plan": "pro-x1",
"region": "in-mum-1",
"os": "ubuntu-22.04"
}