All services
OS

Service

Object Storage

storage4 endpoints
Docs

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

OpenAPI
GET/
100 USDC

List all objects.

GET with no params. Returns list of stored objects with metadata.

DELETE/:key
100 USDC

Delete an object.

DELETE with object key in path.

{
  "path": {
    "key": "string (object key/path)"
  }
}
GET/:key
1000 USDC

Download 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/:key
1000 USDC

Upload 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)"
  }
}