All servicesDocsOpenAPI
OS
Service
Object Storage
storage4 endpoints
S3/R2-compatible object storage with pay-per-use pricing. Upload, download, list, and delete objects. Dynamic pricing based on object size.
mpp
tempo
Methods
4 methods available
GET/100 USDC
GET
/List all objects.
GET with no params. Returns list of stored objects with metadata.
DELETE/:key100 USDC
DELETE
/:keyDelete an object.
DELETE with object key in path.
{
"path": {
"key": "string (object key/path)"
}
}GET/:key1000 USDC
GET
/:keyDownload an object.
GET with object key in path. Price scales with size ($0.001 base + $0.01/MB).
{
"path": {
"key": "string (object key/path)"
}
}PUT/:key1000 USDC
PUT
/:keyUpload an object.
PUT with object key in path and file content in body. Max 100MB. Price scales with size ($0.001 base + $0.01/MB).
{
"path": {
"key": "string (object key/path)"
}
}