Skip to main content
GET
/
schedule
/
scheduled-videos
Get Scheduled Videos
curl --request GET \
  --url https://api.d1g.qzz.io/api/v1/schedule/scheduled-videos \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "scheduledPublishTime": "2023-11-07T05:31:56Z",
      "status": "pending",
      "video": {
        "id": "<string>",
        "title": "<string>",
        "description": "<string>"
      },
      "tiktokAccount": {
        "id": "<string>",
        "username": "<string>",
        "displayName": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Scheduled videos retrieved

success
boolean
Example:

true

data
object[]