Progress
Developing
GET
/api/v1/task/progress
Request
Authorization
Add parameter in header
token
Example:
token: ********************
Query Params
video_key
string
required
Example:
Roshidere-08.mkv
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/task/progress?video_key=Roshidere-08.mkv' \
--header 'token;'
Responses
🟢200
application/json
Body
success
boolean
required
error
object
optional
message
string
required
data
object
optional
progress
array [object {6}]
required
key
string
required
url
string
required
size
string
required
encode_key
string
required
encode_url
string
required
encode_size
string
required
encode_param
string
required
script
string
required
status
string
required
create_at
integer
required
Example
{
"success": true,
"error": {
"message": "string"
},
"data": {
"progress": [
{
"completed": true,
"index": 0,
"clip_key": "string",
"clip_url": "string",
"encode_key": "string",
"encode_url": "string"
}
],
"key": "string",
"url": "string",
"size": "string",
"encode_key": "string",
"encode_url": "string",
"encode_size": "string",
"encode_param": "string",
"script": "string",
"status": "string",
"create_at": 0
}
}
Modified at 2024-09-06 08:55:23