List tracked videos
List the organization’s individually tracked posts and videos.
Covers Instagram posts and TikTok videos added one-by-one via
POST /videos. Cursor-paginated, newest first by default. Each row
carries content fields plus the latest engagement metrics and account
context (account_id is the org-scoped author account, null when the
author isn’t tracked by your org). To list videos discovered from a
tracked account instead, use /account-videos.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Page size (1–200).
1 <= x <= 200Opaque pagination.next_cursor from the previous page.
Legacy signed sort string (e.g. -added_at). Prefer order_by + order_direction. Allowed keys: added_at, create_time, view_count, like_count, play_count.
Field to sort by. Overrides sort.
added_at, create_time, view_count, like_count, play_count Sort direction (default desc). Used with order_by.
asc, desc Filter by platform: instagram or tiktok.
instagram, tiktok Filter by tracking state (active vs paused).
Only videos whose author is this tracked account.
Case-insensitive substring match against the video description.
128When true, the response includes pagination.total_count. Adds one extra COUNT(*) query — leave off for cheap paging.