Storage API
Object storage buckets and file storage shares.
Object Storage
S3-compatible object storage buckets.
List buckets
GET /api/v1/object-storageCreate a bucket
POST /api/v1/object-storage| Field | Type | Required | Description |
|---|---|---|---|
name | string | yes | Bucket name |
region | string | yes | Region ID |
public | boolean | no | Enable public access |
Get a bucket
GET /api/v1/object-storage/{id}Delete a bucket
DELETE /api/v1/object-storage/{id}File Storage
NFS-backed file shares for shared storage across servers.
List file shares
GET /api/v1/file-storageCreate a file share
POST /api/v1/file-storage| Field | Type | Required | Description |
|---|---|---|---|
name | string | yes | Share name |
region | string | yes | Region ID |
size_gb | integer | no | Size in GB (default: 100) |
Get a file share
GET /api/v1/file-storage/{id}Delete a file share
DELETE /api/v1/file-storage/{id}