Docs
Api referenceVideosGet media URLs GET

Get media URLs

Returns freshly-signed thumbnail and animated-preview URLs for a video. Signed URLs are short-lived; call this to obtain a fresh set when a previously issued URL has expired, without re-fetching the whole video. Any field is `null` when the corresponding asset has not been produced.

Returns freshly-signed thumbnail and animated-preview URLs for a video. Signed URLs are short-lived; call this to obtain a fresh set when a previously issued URL has expired, without re-fetching the whole video. Any field is null when the corresponding asset has not been produced.

GET
/v1/videos/{id}/media-urls

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

curl -X GET "https://api.moviie.ai/v1/videos/497f6eca-6276-4993-bfeb-53cbbbba6f08/media-urls"
{
  "thumbnail_url": "http://example.com",
  "preview_webp_url": "http://example.com",
  "preview_gif_url": "http://example.com"
}