Upload a blob
POST
/v1/data/{artifactId}/blobs
const url = 'https://shareout.site/v1/data/example/blobs';const form = new FormData();form.append('file', 'file');form.append('filename', 'example');
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
options.body = form;
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://shareout.site/v1/data/example/blobs \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form file=@file \ --form filename=exampleMax 50MB per file, 500MB per artifact, 1000 blobs.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” artifactId
required
string
Artifact ID (e.g. art_abc123).
Request Body required
Section titled “Request Body required ” Media type multipart/form-data
object
file
required
string format: binary
filename
string
Responses
Section titled “ Responses ”Uploaded
Media type application/json
object
success
boolean
data
object
id
string
filename
string
mimeType
string
size
integer
url
string format: uri
createdAt
string format: date-time
Example generated
{ "success": true, "data": { "id": "example", "filename": "example", "mimeType": "example", "size": 1, "url": "https://example.com", "createdAt": "2026-04-15T12:00:00Z" }}File too large or storage full
Media type application/json
object
success
required
boolean
error
required
Human-readable message.
string
code
required
Machine-readable error code.
string
Example
{ "success": false}