---
title: "Bulk Video Statuses"
method: GET
path: "/v3/videos/statuses"
tags: ["Batches"]
---

# Bulk Video Statuses

`GET /v3/videos/statuses`

Returns statuses for up to 100 videos in one request, addressed by comma-separated video_ids and/or batch_ids query params. Statuses are one of queued, processing, completed, or failed, plus not_found for unknown or unowned ids.

## Query parameters

- `video_ids` string
- `batch_ids` string

## Response `200`

Successful response

- object
  - `data` VideoStatusEntry[]
    - `video_id` string, nullable — Video id. Null for batch items whose video has not been created yet.
    - `status` string, required — Video status (same values as GET /v1/video_status.get), or not_found for unknown/unowned ids.
    - `error` object, nullable — Failure details when status is failed.
    - `batch_id` string, nullable — Set for entries expanded from a batch_id.
    - `item_index` integer, nullable — Set for entries expanded from a batch_id, to correlate items without a video_id yet.
  - `has_more` boolean — Whether more pages are available
  - `next_token` string, nullable — Opaque cursor for the next page

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/heygen/apis/heygen-external-api.md) · [All operations](https://skmtc.net/heygen/apis/heygen-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heygen/heygen-external-api/versions/e2e54726e210/schema)
