Skip to main content
POST
/
videos
/
deltas
Batch video engagement deltas
curl --request POST \
  --url https://api.creatoraudit.com/v2/videos/deltas \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "video_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "windows": [
    1,
    7,
    14,
    30
  ]
}
'
{
  "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.

Body

application/json
video_ids
string<uuid>[]
required

Video UUIDs to fetch deltas for (1–200).

Required array length: 1 - 200 elements
windows
integer[]

Look-back windows in days (1–365) to compute each delta over. Duplicates are ignored; up to 10 windows.

Required array length: 1 - 10 elements
Required range: 1 <= x <= 365

Response

Successful Response