storage

Space

Cloud based object storage

Introduction

Space for simple object storage. Put anything in the cloud forever. Objects can be public (readable by all via a public URL) or private.

Features

Create

Create an object. Returns error if object with this name already exists. Max object size of 10MB, see Upload endpoint for larger objects. If you want to update an existing object use the `Update` endpoint

Delete

Delete an object from space

Download

Download an object via a presigned url

Head

Retrieve meta information about an object

List

List the objects in space

Read

Read an object in space

Update

Update an object. If an object with this name does not exist, creates a new one.

Upload

Upload a large object (> 10MB). Returns a time limited presigned URL to be used for uploading the object

Pricing

EndpointPer Request
Create0.01 USD
DeleteBase
DownloadBase
HeadBase
ListBase
ReadBase
Update0.01 USD
Upload0.01 USD

Base requests are 0.000001 USD

Example

Create Request

Response

{
    "url": "https://example.com/foo/bar/file.jpg"
}