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

# Deliver video playback asset

> Serve HLS/DASH manifests, segments, captions, and posters for ready video assets. Signed assets require expires and token query parameters. Available on all plans with plan-based streaming quotas.



## OpenAPI

````yaml /openapi.json get /video/v1/{playbackId}/{assetPath}
openapi: 3.1.0
info:
  title: Convertly API
  version: 1.0.0
  description: >-
    Convertly provides production API endpoints for media conversion,
    compression, Image CDN delivery, Forma AI, HLS/DASH video streaming, media
    tools, async jobs, workflows, webhooks, and Convertly Storage.
  license:
    name: Proprietary
    url: https://convertly.sh/terms
servers:
  - url: https://convertly.sh
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /video/v1/{playbackId}/{assetPath}:
    get:
      tags:
        - Video Streaming
      summary: Deliver video playback asset
      description: >-
        Serve HLS/DASH manifests, segments, captions, and posters for ready
        video assets. Signed assets require expires and token query parameters.
        Available on all plans with plan-based streaming quotas.
      operationId: deliverVideoPlaybackAsset
      parameters:
        - name: playbackId
          in: path
          required: true
          schema:
            type: string
        - name: assetPath
          in: path
          required: true
          schema:
            type: string
        - name: expires
          in: query
          schema:
            type: integer
        - name: token
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Playback asset bytes
        '403':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '425':
          $ref: '#/components/responses/Error'
      security: []
components:
  responses:
    Error:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        upgradeUrl:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Dashboard-generated Convertly API key. Keys currently begin with
        `cvly_`.
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternative API key header for server-side clients.

````