Toggle navigation
Hot
Link
Sign Up
Login
My Hotlink
Login
Sign Up
Forgot your password?
Premium
Catalogue
Pages
Affiliate
Terms of service
FAQ
Payment policy
DMCA
Report abuse
Contact Us
English
German
Russian
Hotlink.cc API
Account
Account Info
Request:
$ curl https://hotlink.cc/api/account/info?key=
key
Response:
{ "msg": "OK", "result": { "email": "you@domain.com", "balance": "0.04900", "storage_used": null, "premium_expire": "2022-02-18 11:16:07", "storage_left": "inf" }, "status": 200, "server_time": "2021-10-22 04:51:54" }
Account Stats
Request:
$ curl https://hotlink.cc/api/account/stats?key=
key
Response:
{ "msg": "OK", "result": [ { "downloads": "0", "sales": "0", "profit_sales": "0.00000", "profit_refs": "0.00000", "profit_site": "0.00000", "views": "0", "refs": "0", "profit_total": "0.00000", } ] "status": 200, "server_time": "2021-10-22 04:55:33", }
Upload
Step 1: Select a server which is ready to accept an upload
Request:
$ curl https://hotlink.cc/api/upload/server?key=
key
Response:
{ "status": 200, "sess_id": "3rewps03u5ipbkm9", "result": "http://s1.fileserverdomain.com/cgi-bin/upload.cgi", "msg": "OK", "server_time": "2021-10-22 05:13:21" }
Step 2: Upload a file to a file server selected on Step 1
Request:
$ curl -F "sess_id=
SESS_ID
" -F "utype=prem" -F "file_0=@100mb.bin"
UPLOAD_URL
Response:
[ { "file_code": "b578rni0e1ka", "file_status": "OK" } ]
Resulting file URL:
https://hotlink.cc/b578rni0e1ka
Download
Get your own file direct link
Request:
$ curl https://hotlink.cc/api/file/direct_link?file_code=b578rni0e1ka&key=
key
Response:
{ "status": 200, "server_time": "2021-10-22 05:26:00", "result": { "url": "http://s1.fileserverdomain.com/cgi-bin/dl.cgi/xuf4jzopi4mcmhtdbuwuyepms65d5s7fhhmzjdrhk6z2hoeqihdyqli/1mb.bin", "size": 1048576 }, "msg": "OK" }
File Management
File Info
Request:
$ curl https://hotlink.cc/api/file/info?file_code=b578rni0e1ka&key=
key
Response:
{ "status": 200, "server_time": "2022-03-09 10:23:03", "result": [ { "filecode": "b578rni0e1ka", "name": "1mb.bin", "status": 200, "size": 1048576, "uploaded": "2022-03-09 10:20:52", "downloads": 0 } ], "msg": "OK" }
Get files list
Request:
$ curl https://hotlink.cc/api/file/list?page=2&per_page=20&fld_id=15&public=1&created=2018-06-21%2005%3A07%3A10&name=Iron%20man&key=
key
Response:
{ "msg": "OK", "result": { "files": [ { "name": "1mb.bin", "file_code": "b578rni0e1ka", "downloads": 0, "thumbnail": null, "public": 1, "size": 5789, "link": "https://hotlink.cc/b578rni0e1ka/1mb.bin.html", "fld_id": 0, "uploaded": "2022-03-09 10:20:52" } ], "results_total": 7, "results": 7 } }
Rename file
Request:
$ curl https://hotlink.cc/api/file/rename?file_code=b578rni0e1ka&name=newname.bin&key=
key
Response:
{ "status": 200, "result": "true", "msg": "OK", "server_time": "2022-03-09 10:46:14" }
Clone file
Request:
$ curl https://hotlink.cc/api/file/clone?file_code=b578rni0e1ka&key=
key
Response:
{ "status": 200, "result": { "url": "https://hotlink.cc/r9o25tsq86ru", "filecode": "r9o25tsq86ru" }, "msg": "OK", "server_time": "2022-03-09 10:49:48" }
Set file(s) folder
Request:
$ curl https://hotlink.cc/api/file/set_folder?file_code=b578rni0e1ka&fld_id=15&key=
key
Response:
{ "server_time": "2022-03-09 11:26:22", "msg": "OK", "status": 200 }
Folder Management
Folder List
Request:
$ curl https://hotlink.cc/api/folder/list?fld_id=0&key=
key
Response:
{ "status": 200, "msg": "OK", "result": { "files": [ { "fld_id": 0, "link": "https://hotlink.cc/b578rni0e1ka", "file_code": "b578rni0e1ka", "uploaded": "2022-03-09 10:49:51", "name": "1mb.bin" } ], "folders": [ { "fld_id": 15, "code": null, "name": "folder1" } ] }, "server_time": "2022-03-09 11:31:52" }
Create Folder
Request:
$ curl https://hotlink.cc/api/folder/create?parent_id=0&name=newfolder&key=
key
Response:
{ "status": 200, "msg": "OK" "result": { "fld_id": 52 }, "server_time": "2022-03-09 11:37:35", }
Rename Folder
Request:
$ curl https://hotlink.cc/api/folder/rename?fld_id=15&name=newname&key=
key
Response:
{ "status": 200, "msg": "OK" "result": "true", "server_time": "2022-03-09 11:39:29", }