Skip to main content

Bundle State

  • Method: GET
  • URL: https://api.tokportal.com/bundles-state?bundle_id=<uuid>
  • Auth: X-API-Key

Response (shape excerpts):

{
"bundle": { "id": "...", "title": "...", "status": "..." },
"account_listing": { "id": "...", "status": "...", "tiktok_url": "..." },
"videos": [
{ "id": "...", "position": 1, "status": "...", "tiktok_url": "..." }
],
"order": { "id": "...", "status": "..." }
}

Notes:

  • When a bundle is created with videos_quantity > 0, you will see position: 1..N pre-created in videos with status pending before you configure them.

Example:

curl -s -H "X-API-Key: $API_KEY" "https://api.tokportal.com/bundles-state?bundle_id=$BUNDLE_ID"