The Virtual Machine as a Service (VMaaS) APIs lets you programmatically deploy and manage virtual machines on io.net Cloud. Unlike CaaS (Containers as a Service), VMaaS provides full VM instances with CPU, GPU, memory, and storage resources — ideal for long-running workloads, custom environments, or GPU-intensive tasks.Documentation Index
Fetch the complete documentation index at: https://io.net/docs/llms.txt
Use this file to discover all available pages before exploring further.
Generate an API key
You can obtain an API key for io.net Cloud to use VMaaS in two ways:- From the web interface.
- By using a two-step process (first generate a JWT token, then request the API key using curl).
Option 1: Generate an API Key via Web Interface
IO Clouds APIs authenticate requests using API keys. You can generate API keys from your user account.Note: When generating an API key, make sure to specify the associated IO Cloud project.
Option 2: Generate an API Key Using a JWT Token
Step 1: Get a JWT Token
io.net APIs are built around RESTful principles. You can use io.net APIs to gain insight into different elements of the network. To use io.net APIs, you must provide a JWT token in the header of your request. Follow the instructions below to generate a token:- Go to io.net > IO ID > IO Clouds tab.
- In the UI, right-click and select Inspect.
- In the Inspect tool, click Network.
- Refresh the IO Clouds page.
- In the list of elements, click Devices.
- Scroll down to the Request Headers section.
- Copy and store the token.
This token is valid for 21 days.

Step 2. Generate an API Key via curl
Use the JWT token to request your API key:
X-API-KEY header in your requests.

Making requests
Accessing APIs requires IO credits. Make sure you have sufficient IO credits before using any API endpoint.Contact support or visit the IO Credits documentation page for more details.
Authorization HTTP header for all API requests:
$IOCLOUD_API_KEY with your API key.
Example: Deploy VMs
The followingcurl command demonstrates how to deploy VMs in IO Cloud.Make sure to include your
x-api-key header and, if needed, adjust the query parameters such as status, page, or page_size.: