Check video transcoding status (batch)
API reference

Check video transcoding status (batch)

Transcoding status + duration for a batch of video GUIDs (`bunnyStreamId` values from your vault items).

View as MarkdownUpdated Aug 19, 2026
POST/api/external/vault/video-status

Transcoding status + duration for a batch of video GUIDs (bunnyStreamId values from your vault items).

A freshly uploaded video is not forwardable or playable until isReady — poll this while isProcessing. Reasonable interval: every 15–30 seconds while you wait on a specific video.

Silent truncation and omission

At most 50 ids are processed per call — extras are dropped without an error, so chunk larger lists. Ids you don't own, and ids whose lookup errored, are omitted from the response rather than reported: treat a missing key as "not ready".

Authentication

Send the creator's API key as a bearer token: Authorization: Bearer dpfn_…. See Authentication & API keys.

Request body

Content type: application/json

NameTypeRequiredDescription
videoIdsstring[]RequiredStream GUIDs to check (≤50 — extras silently dropped). Non-strings are filtered out; an empty array returns {"statuses":{}}.
Max items: 50
Check two videos
{
  "videoIds": [
    "c2f7f9e2-1111-4222-b333-4d55e6f7a8b9",
    "0f3d9a11-2222-4333-a444-5e66f7a8b9c0"
  ]
}

Responses

200Status map keyed by the GUIDs you sent (unresolvable ids omitted).
NameTypeDescription
statusesVideoStatusMapGUID → status.
Show child attributes
{videoId}objectKeyed by the Bunny Stream GUIDs you sent. Ids you don’t own, and ids whose Bunny lookup errored, are OMITTED (not reported as failed) — treat a missing key as "still gated".
Show child attributes
isReadybooleanTranscoding finished — the video is playable and forwardable.
isProcessingbooleanStill transcoding — poll again later.
isFailedbooleanEncoding failed — re-upload.
lengthintegerDuration in seconds, once known.
Example response
{
  "statuses": {
    "c2f7f9e2-1111-4222-b333-4d55e6f7a8b9": {
      "isReady": true,
      "isProcessing": false,
      "isFailed": false,
      "length": 74
    },
    "0f3d9a11-2222-4333-a444-5e66f7a8b9c0": {
      "isReady": false,
      "isProcessing": true,
      "isFailed": false
    }
  }
}

Errors

StatusBodyWhen
400{"error":"Invalid JSON body"}The body is not valid JSON.
401{"error":"Unauthorized","code":"unauthorized"}Missing or invalid API key.

Rate limiting

Every response carries the X-RateLimit-Tier header and, on limited tiers, the per-minute and per-day trios — read X-RateLimit-Remaining and X-RateLimit-Reset instead of hardcoding limits. Details in Rate limits.

Code samples

curl -X POST "https://www.dropfans.io/api/external/vault/video-status" \
  -H "Authorization: Bearer $DROPFANS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "videoIds": [
    "c2f7f9e2-1111-4222-b333-4d55e6f7a8b9",
    "0f3d9a11-2222-4333-a444-5e66f7a8b9c0"
  ]
}'

Questions? [email protected]