GET
Get Video
Videos
3 min read
Retrieve detailed information about a specific video including its scenes and generation status.
GET
https://api.videopilot.app/api/videos/{id}
This endpoint requires authentication. Include your API key in the Authorization header.
Parameters
The following parameters are supported for this endpoint:
Name | Type | Required | Default | Description |
---|---|---|---|---|
id path | string | Required | - | The unique identifier of the video Example: "video_123abc" |
Code Examples
Example requests in multiple programming languages:
curl -X GET https://api.videopilot.app/api/videos/video_123abc \
-H "Authorization: Bearer YOUR_API_KEY"
Responses
Possible responses from this endpoint:
200
Video retrieved successfully
401
Authentication required
404
Video not found
Example Response
JSON
{
"error": "Not Found",
"message": "Video not found",
"code": "VIDEO_NOT_FOUND"
}
Try It Out
Test this endpoint directly from your browser:
Your API key is only used for this session and never stored or logged.
GET
/api/videos/{id}
Generated cURL Command
Copy this command to use in your terminal
"text-blue-400 font-semibold">curl -X GET https://api.videopilot.app/api/videos/{id} \
-H "Authorization: Bearer YOUR_API_KEY"
Response
Make a request to see the response here