Docs
Api referenceVideosList Video Summaries GET

List Video Summaries

Returns a video's Video Summaries, including their state and history.

GET
/v1/videos/{id}/recap

Authorization

BearerAuth
AuthorizationBearer <token>

Pass the raw API key as a Bearer token (Authorization: Bearer <key>). Publishable keys start with mvi_pub_ (playback-scoped). Other prefixes denote private/admin keys for general REST routes. GET /v1/embeds/{embedId}/playback accepts publishable keys only.

In: header

Path Parameters

id*string

Video UUID.

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://api.moviie.ai/v1/videos/497f6eca-6276-4993-bfeb-53cbbbba6f08/recap"
{
  "data": [
    {
      "summaryId": "34e22033-2566-446b-a658-ac29eb10a36c",
      "status": "pending",
      "destination": "player",
      "enabled": true,
      "expressOnly": true,
      "stale": true,
      "actualRatio": 0,
      "resultVideoId": "52e32155-7401-4370-bb3d-29d8271a1432",
      "collectionId": "0ffe69e2-b7af-4b1e-835c-867376165f50",
      "creditsCharged": "string",
      "createdAt": "string",
      "error": {
        "code": "string",
        "message": "string"
      }
    }
  ]
}
{
  "error": "Resource not found",
  "code": "NOT_FOUND"
}