JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/videos/{video_id}/content', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
"<string>"
Download the rendered video content for a completed generation.
Bearer token authentication
The ID of the video generation request.
Video content
The response is of type file.
file
Was this page helpful?