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 'https://www.16api.com/volc/v1/contents/generations/tasks?page_size=3&filter.status=succeeded' \
--header 'Authorization: Bearer <token>'
Responses
application/json {
"total": 0,
"items": [
{
"id": "string",
"model": "string",
"status": "string",
"content": {
"video_url": "string"
},
"usage": {
"completion_tokens": 0,
"total_tokens": 0
},
"created_at": 0,
"updated_at": 0
}
]
}
Modified at 2026-02-01 07:33:56