Skip to main content
GET
/
v2
/
upload
Get All Pending Uploads or specific list of uploads by ids or statuses
curl --request GET \
  --url https://api.lilt.com/v2/upload \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": 12345,
    "filename": "document.xliff",
    "status": "pending",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

ids
string

Comma-separated list of upload IDs to filter by.

statuses
string

Comma-separated list of upload statuses to filter by.

Response

List of pending uploads.

id
integer

Unique upload identifier

Example:

12345

filename
string

Name of the uploaded file

Example:

"document.xliff"

status
string

Current upload status

Example:

"pending"

created_at
string<date-time>

Upload creation timestamp