storage
Cloud based object storage
Space for simple object storage. Put anything in the cloud forever. Objects can be public (readable by all via a public URL) or private.
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 an object from space
Download an object via a presigned url
Retrieve meta information about an object
List the objects in space
Read an object in space
Update an object. If an object with this name does not exist, creates a new one.
Upload a large object (> 10MB). Returns a time limited presigned URL to be used for uploading the object
Endpoint | Per Request |
---|---|
Create | 0.01 USD |
Delete | Base |
Download | Base |
Head | Base |
List | Base |
Read | Base |
Update | 0.01 USD |
Upload | 0.01 USD |
Base requests are 0.000001 USD
Create Request
Response
{
"url": "https://example.com/foo/bar/file.jpg"
}