Skip to main content
GET
/
v1
/
videos
/
{video_id}
/
content
sora-2-pro (download video)
curl --request GET \
  --url https://api.example.com/v1/videos/{video_id}/content
Once the job reaches status completed, fetch the MP4 with GET /videos/{video_id}/content. This endpoint streams the binary video data and returns standard content headers, so you can either save the file directly to disk or pipe it to cloud storage.
curl -L "https://gptproto.com/v1/videos/video_abc123/content" \
  -H "Authorization: YOUR_API_KEY" \
  --output video.mp4
{
  "error": {
    "message": "Invalid signature",
    "type": "401"
  }
}

Parameters

ParameterTypeRequiredDefaultDescription
video_idstring✅ Yes-The identifier of the video task.