GET

Get Video

Videos
3 min read

Retrieve detailed information about a specific video including its scenes and generation status.

GEThttps://api.videopilot.app/api/videos/{id}

Parameters

The following parameters are supported for this endpoint:

NameTypeRequiredDefaultDescription
idpath
stringRequired-

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:

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