List blobs
GET
/v1/data/{artifactId}/blobs
const url = 'https://shareout.site/v1/data/example/blobs?limit=50&offset=0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://shareout.site/v1/data/example/blobs?limit=50&offset=0' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” artifactId
required
string
Artifact ID (e.g. art_abc123).
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
Responses
Section titled “ Responses ”Blobs
Media type application/json
object
success
boolean
data
object
blobs
Array<object>
object
id
string
filename
string
mimeType
string
size
integer
url
string format: uri
createdAt
string format: date-time
total
integer
hasMore
boolean
Example generated
{ "success": true, "data": { "blobs": [ { "id": "example", "filename": "example", "mimeType": "example", "size": 1, "url": "https://example.com", "createdAt": "2026-04-15T12:00:00Z" } ], "total": 1, "hasMore": true }}