Streamio API Documentation

Videos - Public Show

A public API method for retrieving video metadata and playback info. If you want to call this method from client side javascript it also has support for JSONP through the 'callback' parameter.

Please note that if you want to implement your own player and it supports HLS you can just point it to the manifest that will contain subtitles and transcodings all compiled and ready to use. Just use the .m3u8 extension as format for this endpoint.

No authentication required!

Request

Url

https://www.streamio.com/api/v1/videos/video_id/public_show.format

Request Method

GET

Parameters

  • callback The name of a javascript function to be used as a JSONP callback.

Response

Code

200

Body

Examples

A simple show

Just GET it.

curl https://www.streamio.com/api/v1/videos/4d933d7254129002b3000076/public_show.json

With a JSONP callback

Prepare a javascript function to be used as a JSONP callback and provide the function name as a parameter.

curl https://www.streamio.com/api/v1/videos/4d933d7254129002b3000076/public_show.json?callback=myAwesomeCallback