Skip to main content
GET
/
v1
/
video
/
playback
/
manifest
/
{token}
Exchange a playback token for a CDN manifest URL
curl --request GET \
  --url https://api.ansdev.cloud/v1/video/playback/manifest/{token}
{
  "success": true,
  "data": {
    "masterPlaylistUrl": "<string>",
    "qualities": [
      {
        "quality": "480p",
        "width": 854,
        "height": 480,
        "bitrate": 1200
      }
    ],
    "encrypted": true,
    "durationSec": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://ansdevcloud.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint is Player-SDK-only. You almost certainly don’t want to call it directly — the SDK fetches the token, exchanges it for the manifest, and hands master.m3u8 to hls.js on your behalf.

Path Parameters

token
string
required
Required string length: 16 - 4096

Response

OK

success
boolean
data
object