---
title: "Playout API"
slug: "playout-api"
updated: 2024-01-17T12:42:40Z
published: 2024-01-17T12:42:39Z
canonical: "help.movingimage.com/playout-api"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.movingimage.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Playout API

## Introduction

The movingimage Playout API allows you to access to the VideoManager Pro video streaming URLs. These include the download URLs for the available formats and the HLS manifest URL. Access to these allows you to use your own player and/or build your own MRSS feed.

### Get playout video

This endpoint returns the playback URLs for a specific video.

### URL

```plaintext
https://d.video-cdn.net/play/player/playerId/video/videoId?token=token
```

### Parameters

```plaintext
playerId: The Base60 identifier of the player.
videoId: The Base60 identifier of the video.
token: An optional token that protects the video.Response
```

### Response

```plaintext
{
  "videoSources": {
    "flash": {
      "auto": [{
        "mimeType": "application/f4m",
        "source": "http://blob.playout.mi24.dev/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa,1656,256,596,828,.mp4.csmil/manifest.f4m"
      }],
      "108p": [{
        "mimeType": "video/mp4",
        "source": "http://blob.playout.mi24.dev/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa256.mp4"
      }],
      "576p": [{
        "mimeType": "video/mp4",
        "source": "http://blob.playout.mi24.dev/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa1656.mp4"
      }],
      "360p": [{
        "mimeType": "video/mp4",
        "source": "http://blob.playout.mi24.dev/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa828.mp4"
      }],
      "288p": [{
        "mimeType": "video/mp4",
        "source": "http://blob.playout.mi24.dev/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa596.mp4"
      }]
    },
    "html": {
      "auto": [{
        "mimeType": "application/vnd.apple.mpegurl",
        "source": "http://blob.playout.mi24.dev/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa,1656,256,596,828,.mp4.csmil/master.m3u8"
      }],
      "108p": [{
        "mimeType": "video/mp4",
        "source": "http://vmpro.mi24.dev/ffh-1-nginx/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa256.mp4"
      },
      {
        "mimeType": "video/webm",
        "source": "http://vmpro.mi24.dev/ffh-1-nginx/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.ymv224.webm"
      }],
      "576p": [{
        "mimeType": "video/mp4",
        "source": "http://vmpro.mi24.dev/ffh-1-nginx/8FCCsZGaogFShqnZK2GGky/36Y_2KYYewod8S8azf4f64.baa1656.mp4"
      },
      {
        "mimeType": "video/webm",
        "source": "http://vmpro.mi24.dev/ffh-1-nginx/8FCCsZGaogFShqnZK2GGky/36Y_2KYYe
```
