---
title: "PublicLinks"
url: "https://earlyaccess.developers.bynder.com/apis/adaptive-video-streaming-api-1/versions/0a27bc2c-b3b6-4dae-834a-72dc4bbf515d/schemas/PublicLinks"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/adaptive-video-streaming-api-1/versions/0a27bc2c-b3b6-4dae-834a-72dc4bbf515d.md

# PublicLinks

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Adaptive Video Streaming API
  version: 1.0.0
servers:
  - description: API server
    url: https://api.example.com
components:
  schemas:
    PublicLinks:
      properties:
        dash:
          description: URL to the DASH manifest
          example: https://your.portal.url/vod-stream/00000000-0000-0000-0000-000000000000/play-dash.mpd
          format: uri
          type: string
        embedCode:
          description: HTML embed code for integrating the video player
          example: <link rel="stylesheet" type="text/css"
            href="https://cdnjs.cloudflare.com/ajax/libs/shaka-player/4.7.11/controls.min.css"/><div   bvd-manifest-url="https://deliver-testmanual.bynder-stage.com/vod-stream/450b9520-b186-48c6-8a51-faec286abc37/play-hls2.m3u8"
            bvd-poster="https://deliver-testmanual.bynder-stage.com/asset/450b9520-b186-48c6-8a51-faec286abc37/thumbnail/webimage-poster"></div><script
            src="https://deliver-testmanual.bynder-stage.com/v7/video-delivery/main.js"></script>
          type: string
        hls:
          description: URL to the HLS manifest
          example: https://your.portal.url/vod-stream/00000000-0000-0000-0000-000000000000/play-hls2.m3u8
          format: uri
          type: string
      required:
        - hls
        - dash
        - embedCode
      type: object
```
