Uploads

Get all uploads

Retrieve a list of all uploads with optional filtering and pagination.

GET
/api/uploads

Authorization

Authorization
header
string
required

Enter the project access token with the Bearer prefix, e.g. "Bearer project_access_token"

Query Parameters

id
string

Filter by upload ID

offset
default: 0
integer

Pagination offset

Required range: x >= 0
limit
default: 100
integer

Pagination limit (max 100)

Required range: 1 <= x <= 100
source_id
string

Filter by source ID

status
string

Filter by status (pending, completed, error)

Available options:
waitingcompletedfailedexpired
created.gte
integer
epoch

Filter by creation date greater than or equal (UNIX epoch time)

Required range: x >= 0
Examples:
1764238404
created.lte
integer
epoch

Filter by creation date less than or equal (UNIX epoch time)

Required range: x >= 0
Examples:
1764238404
created.sort
default: "asc"
string

Sort by creation date (asc/desc)

Available options:
ascdesc
metadata
array[]

Filter by metadata

Responses

application/json
data
object[]
required

Data contains the paginated upload items

limit
integer
required

Limit indicates the maximum number of items in the current response

offset
integer
required

Offset indicates the offset of the first item in the current response

status
"success"
string
required

Status indicates the response status "success"

total
integer
required

Total indicates the total number of items

OK