Endpoints
List Storage
GET
https://api.oneinfer.ai/v1/storageRetrieve a list of all persistent storage volumes associated with your developer account.
Example Response
[
{
"_id": "670c8d1...",
"storage_id": "vol_123456",
"name": "my-dataset-volume",
"size_gb": 50,
"status": "AVAILABLE",
"developer_id": "dev_abc987",
"created_at": "2024-05-23T10:30:00Z"
}
]Error Status Codes
| Code | Status | Description |
|---|---|---|
| 200 | OK | Storage volumes listed successfully. |
| 401 | Unauthorized | Missing or invalid Authorization header / Bearer token. |
| 500 | Internal Server Error | Unexpected error listing storage volumes. |