API Credentials
You can find your API token under settings on the dashboard ( https://vinovo.si/dash/settings )
Rate Limit
API requests are rate limited to 10 per second
{
"status": 429,
"msg": "Too many requests",
}
Account Information
Get basic info of your account
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
{
"msg": "OK",
"server_time": "2024-01-11 14:25:09",
"status": 200,
"result": {
"email": "[email protected]",
"balance": "0.00000",
"storage_used" :"24186265",
}
}
Account Statistics
Get download and earnings statistics (default last 7 days)
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| last | Last x days report | |
| from_date | From date ( YYYY-MM-DD ) | |
| to_date | To date ( YYYY-MM-DD ) |
{
"msg": "OK",
"server_time": "2024-01-11 14:25:09",
"status": 200,
"result": [
{
"profit_views": "0.00000",
"downloads": "0",
"views": "0",
"day": "2017-08-11",
"profit_total": "0.00000"
},
{
"profit_views": "0.00000",
"downloads": "0",
"views": "0",
"day": "2017-08-12",
"profit_total": "0.00000"
}
]
}
Abuse List
Get abuse files list (500 results per page)
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| per_page | Results per page (default 500) | |
| page | Page Number |
{
"msg": "OK",
"server_time": "2024-01-11 14:25:09",
"status": 200,
"result": [
{
"reported_on": "2024-01-11 14:25:09",
"file_code": "abc",
"fld_id": "0",
"disabled_on": "2024-01-11 17:25:09"
}
]
}
Inactive List
Get deleted inactive files list (500 results per page)
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| per_page | Results per page (default 500) | |
| page | Page Number |
{
"msg": "OK",
"server_time": "2024-01-11 14:25:09",
"status": 200,
"result": [
{
"file_code": "abc",
"fld_id": "0",
"disabled_on": "2024-01-11 17:25:09"
}
]
}
Video Upload
Upload videos from your device
A new URL must be requested for each upload
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
{
"msg": "OK",
"server_time": "2024-01-11 14:20:09",
"status": 200,
"result": "https://vincdn.net/upload/abc"
}
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| api_key | Your API token | Yes |
| file | Local file | Yes |
| fld_id | Folder ID |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": [
{
"embed_url": "https://example.com/e/abc",
"download_url": "https://example.com/d/abc",
"filecode": "abc",
"title": "test_file"
}
]
}
Copy or Clone
Copy / Clone any file on the platform
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code | Yes |
| fld_id | Folder ID to download file into |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": {
"embed_url": "https://example.com/e/abc",
"download_url": "https://example.com/d/abc",
"filecode": "abc"
}
}
Add URL
Upload file from url
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| url | File URL | Yes |
| fld_id | Folder ID to download file into | |
| new_title | New file title |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": {
"embed_url": "https://example.com/e/abc",
"download_url": "https://example.com/d/abc",
"filecode": "uzn191zlw6z0tw"
},
"total_slots": 100,
"used_slots": 0
}
Remote Upload List
Remote Upload List & Status
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": [
{
"bytes_total": "0",
"created": "2023-02-10 02:10:17",
"remote_url": "https://example.com/video.mp4",
"status": "pending|working|complete|error",
"file_code": "uzn191zlw6z0tw",
"bytes_downloaded": "0",
"folder_id": "0"
}
]
}
Remote Upload Status
Get file id remote upload status
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": [
{
"bytes_total": "0",
"created": "2023-02-10 02:10:17",
"remote_url": "https://example.com/video.mp4",
"status": "pending|working|complete|error",
"file_code": "uzn191zlw6z0tw",
"bytes_downloaded": "0",
"folder_id": "0"
}
]
}
Remote Upload Slots
Get remote upload slots information
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"total_slots": 100,
"used_slots": 10
}
Remote upload actions
Perform various actions on remote upload
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| restart_errors | Restart all errors | |
| clear_errors | Clear all errors | |
| clear_all | Clear all complete transfers | |
| delete_code | Delete a transfer (file_code) |
{
"msg": "Errors restarted",
"server_time": "2023-02-10 02:10:17",
"status": 200
}
Create Folder
Create a folder
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| name | Name of the folder | Yes |
| parent_id | Parent folder ID |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": {
"fld_id": "1234567"
}
}
Rename Folder
Rename a folder
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| fld_id | Folder ID | Yes |
| name | Folder new name | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": "true"
}
List Folders & Files
List all folders and files
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| page | Page number | |
| per_page | Files per page (Maximum 200) | |
| fld_id | Folder ID | Yes |
| only_folders | To list only folders (0 or 1) |
{
"msg":"OK",
"server_time":"2023-10-17 07:31:01",
"status":200,
"result":{
"folders":[
{
"name":"New Folder 2",
"fld_id":"12345678"
},
],
"files": [
{
"download_url": "https://example.com/d/abc",
"single_img": "https://example.com/img/abc.jpg",
"file_code": "abc",
"canplay": 1,
"length": "111",
"views": "1",
"uploaded": "2023-02-10 02:10:17",
"fld_id": "0",
"title": "video1"
}
]
}
}
List Files
List files only
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| page | Page number | |
| per_page | Files per page (Maximum 200) | |
| search_term | Search file name | |
| fld_id | Folder ID | |
| created | Show files uploaded older than timestamp (Eg: 2021-10-07 03:15:19) Or specify an number to return files uploaded older than X minutes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": {
"files": [
{
"download_url": "https://example.com/d/abc",
"single_img": "https://example.com/img/abc.jpg",
"splash_img": "https://example.com/splash/abc.jpg",
"file_code": "abc",
"canplay": 1,
"length": "111",
"views": "1",
"uploaded": "2023-02-10 02:10:17",
"fld_id": "0",
"title": "video1"
}
],
"total_pages": 1,
"results_total": "1",
"results": 1
}
}
File Status
Check status of your files
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code (comma separated) | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": [
{
"status": "Active",
"filecode": "abc1"
},
{
"status": "Not found",
"filecode": "abc2"
}
]
}
File Info
Get file info
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code (comma separated) | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": [
{
"single_img": "https://example.com/img/abc.jpg",
"splash_img": "https://example.com/splash/abc",
"status": 200|pending|working|error|removed,
"filecode": "abc",
"canplay": 1,
"size": "111",
"views": "0",
"length": "111",
"folder": 0,
"uploaded": "2023-02-10 02:10:17",
"last_view": "2023-02-10 02:22:17",
"title": "video1"
},
{
"status": "Not found",
"filecode": "abc2"
}
]
}
File Image
Get file splash, single or thumbnail image
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code (comma separated) | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": [
{
"filecode": "abc",
"single_img": "https://example.com/img/abc.jpg",
"thumb_img": "https://example.com/thumb/abc.jpg",
"splash_img": "https://example.com/splash/abc.jpg"
}
]
}
File Rename
Rename a file
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code | Yes |
| title | New file title | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": "true"
}
File Move
Rename a file
| PARAMETER | DESCRIPTION | REQUIRED |
|---|---|---|
| key | Your API token | Yes |
| file_code | File code | Yes |
| fld_id | Folder ID to move the file to (set 0 for / directory) | Yes |
{
"msg": "OK",
"server_time": "2023-02-10 02:10:17",
"status": 200,
"result": "true"
}