Stream video — serves local file if downloaded, otherwise proxies from CDN
GET
/api/v1/stream/{variantId}
const url = 'http://localhost:8080/api/v1/stream/1';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8080/api/v1/stream/1Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” variantId
required
integer format: int64
Responses
Section titled “ Responses ”OK