JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/videos/{video_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "id": "<string>", "model": "<string>", "status": "<string>", "created": 123, "object": "<string>", "output": [ { "id": "<string>", "type": "<string>", "url": "<string>" } ] }
Check the status of a video generation request.
Bearer token authentication
The ID of the video generation request.
Video status response
Show child attributes
Was this page helpful?