List Providers
Response
quantacloud as the provider value when creating a deployment.
List OS Images
id field as os_image_id when creating a deployment, or omit it to get the default.
Results are cached for 1 hour.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The provider slug and OS images used when deploying.
GET /api/v1/providers
{
"data": [
{ "name": "quantacloud", "type": "vm" }
]
}
quantacloud as the provider value when creating a deployment.
GET /api/v1/providers/quantacloud/images
id field as os_image_id when creating a deployment, or omit it to get the default.
Results are cached for 1 hour.
| Param | Type | Description |
|---|---|---|
instance_type | string | Optional — filter images available for a specific instance type |
{
"data": [
{
"id": "default",
"displayName": "Ubuntu 22.04 · NVIDIA drivers · Docker",
"slug": "default",
"hasCuda": false,
"cudaVersion": null,
"hasDocker": true,
"isDefault": true
}
]
}
| Field | Description |
|---|---|
id | Image identifier — pass this as os_image_id |
displayName | Human-readable name |
hasCuda | Whether the CUDA toolkit is pre-installed. The base image ships NVIDIA drivers and Docker; install the toolkit or run a CUDA container on top. |
cudaVersion | CUDA toolkit version if installed |
hasDocker | Whether Docker is pre-installed |
isDefault | Whether this is the default image |