Skip to main content
GET
/
upload
/
history
Get Upload History
curl --request GET \
  --url https://api.d1g.qzz.io/api/v1/upload/history \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "dd3c9a25-f6a0-4ef7-b227-830fa0da70e4",
      "tiktokVideoId": "v_pub_file~v2-1.7562862196724844558",
      "title": "Amazing TikTok Video",
      "description": "Check out this amazing content! #viral #trending",
      "status": "published",
      "uploadProgress": 100,
      "mediaType": "video",
      "tiktokAccount": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "username": "clipcraft_admin",
        "displayName": "clipcraft_admin"
      },
      "createdAt": "2025-01-19T09:31:29.265Z",
      "publishedAt": "2025-01-19T09:31:40.733Z",
      "error": null
    }
  ],
  "pagination": {
    "total": 100,
    "limit": 20,
    "offset": 0,
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

Use JWT token (from Supabase auth) or API key (format: sk_live_...)

Query Parameters

limit
integer
default:20

Number of records per page

Required range: x <= 100
offset
integer
default:0

Number of records to skip

Response

200 - application/json

Upload history retrieved successfully

success
boolean
required
Example:

true

data
object[]
required
pagination
object
required