Skip to main content
GET
/
accounts
/
{account_id}
/
videos
List one account's videos
curl --request GET \
  --url https://api.creatoraudit.com/v2/accounts/{account_id}/videos \
  --header 'Authorization: Bearer <token>'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>",
  "errors": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string<uuid>
required

Tracked account UUID.

Query Parameters

limit
integer
default:50

Page size (1–200).

Required range: 1 <= x <= 200
cursor
string | null

Opaque pagination.next_cursor from the previous page.

sort
string
default:-create_time

Legacy signed sort string (e.g. -create_time). Prefer order_by + order_direction. Allowed keys: create_time, view_count, like_count, play_count.

order_by
enum<string> | null

Field to sort by. Overrides sort.

Available options:
create_time,
view_count,
like_count,
play_count
order_direction
enum<string> | null

Sort direction (default desc). Used with order_by.

Available options:
asc,
desc
include_total
boolean
default:false

When true, the response includes pagination.total_count. Adds one extra COUNT(*) query — leave off for cheap paging.

Response

Successful Response