Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/v1/videos/video_099c5197-abfd-4e16-88ff-1e162f2a5c77/content' \
--header 'Accept: application/json' \
--header 'X-Forwarded-Host: localhost:5173' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
Responses
application/json {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string"
},
"video_url": {
"type": "null"
},
"enhanced_prompt": {
"type": "string"
},
"status_update_time": {
"type": "integer"
}
},
"required": [
"id",
"status",
"video_url",
"enhanced_prompt",
"status_update_time"
],
"x-apifox-orders": [
"id",
"status",
"video_url",
"enhanced_prompt",
"status_update_time"
]
}
Modified at 2025-12-01 04:33:30