API Reference
Interact with axeiro programmatically using our REST API. Authenticate, query resources, and manage VMs.
1. Authentication
Use your API token in headers to authenticate requests.
curl -H "Authorization: Bearer <API_TOKEN>" https://api.axeiro.com/v1/vms
2. Endpoints & Payloads
Example: Create VM
POST /v1/vms
{
"name": "my-vm",
"provider": "aws",
"region": "us-east-1",
"size": "t2.micro",
"os": "ubuntu-22.04"
}Next → Billing & Plans