Skip to main content
GET
/
videos
/
{video_id}
/
content
Get video content
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>"
Returns the raw video binary from the upstream provider when the generation is ready.

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

video_id
string
required

The ID of the video generation request.

Response

200 - application/octet-stream

Video content

The response is of type file.

Last modified on February 11, 2026