Premium MixDrop.ag - Streaming & Download Platform With Affiliate Program

MixDrop

Active Member
Corporate Membership
739
2019
370
7,630
jrucZFA.png

Hi WJunction.
We are MixDrop.ag, one Streaming & Download platform without limits.

About:
  • We offer Unlimited Storage/Traffic.
  • No Premium Needed, Everything is Free.
  • No Download Speed Limits.
  • Legal Adult Content are Allowed.*
  • We Have Affiliate Program. (MixPartners.ag)
  • API Avaliable at https://mixdrop.ag/api

FAQ:
What is the minimum Payout:

- Minimum Payout is just $10 USD.

What is the Earning Rates:
- You can check our rates offer here.

How long do you host my files:
- Files will be deleted after 60 days of inactivity.

Where do you send Payments:
Paypal - MIN $50
Webmoney - MIN $50
Advcash- MIN $10
Bitcoin (BTC)- MIN $10
Tether (USDT - TRC20) - MIN $20

*For adult content you need to turn on button in your personal settings, "Upload Adult Content".

Contact/Support:
E-mail: support@mixdrop.ag
Web: https://mixdrop.ag/
 
Last edited:
3,265 comments
Hello,
I didn't receive my last payment. Please check out.
Payment requested at 16/06/2021 21:56 $10.01 Processed
Marked as Processed (paid), but I didn't receive money yet in my Paypal.
Check out please, user name is ANTONIO777NL
 
I didin't encounted that problem anymore.
Can you ask you're developer if it's possible to implement search by the code of the file (e.g "n0ls8l2rwe71w8" ?
Hello,

We will discuss it with them in the next days.

Regards,
MixDrop

Try to upload via FTP. Steep, slow climbs. Duplicate files, cut badly uploaded.
Hello,

I see no issues with uploads in the last hours. If issue persist please give us some more information.

Regards,
MixDrop

Hello,
I didn't receive my last payment. Please check out.
Payment requested at 16/06/2021 21:56 $10.01 Processed
Marked as Processed (paid), but I didn't receive money yet in my Paypal.
Check out please, user name is ANTONIO777NL
Hello,

Payment is processed by us but pending on exchanger, please wait some more time and you will get your money.

Regards,
MixDrop

.club File not found.
Hello,

.club domain is not owned by us. So we do not recommend anyone to use this domain.
We only have 3 domains : .co .to .sx

Regards,
MixDrop
 
Hello,

We have only small queue at remote upload, so it supposed to be fast.
Please test again, if you still face this issue then sent me more details at PM
Thank you

Regards,
MixDrop
 
Hello,

Short update here :

Due to recent changes on Paypal TOS (according to our exchanger), and some issue on Paypal payment lately, we decide to increased paypal payment to $20.
Thank you

Regards,
MixDrop
 
hi mixdrop,

I've been trying HARD to get the upload subtitle API to work on python,
can you help me out abit~ maybe I'm missing something stupid.


import requests

api_email = "email"
api_key = "xxxxx"
ref_id = "xxxxxxxx"
mix_subtitle_data = {
'lang': 'en',
'file': (open('english.srt', 'rb'))
}

mix_api_subtitle = "https://api.mixdrop.co/addsubtitle?email=" + str(api_email) + "&key=" + str(
api_key) + "&ref[]=" + str(ref_id)

mix_subtitle_upload = requests.post(mix_api_subtitle, files=mix_subtitle_data)
mix_subtitle_upload_json = mix_subtitle_upload.json()

print(mix_subtitle_upload_json)


it returns: {'success': False, 'result': {'msg': 'File not found...'}}

am I missing something here? I know I'm just missing some very small.... please help~

@Hyperz (superman please help)
 
hi mixdrop,

I've been trying HARD to get the upload subtitle API to work on python,
can you help me out abit~ maybe I'm missing something stupid.


import requests

api_email = "email"
api_key = "xxxxx"
ref_id = "xxxxxxxx"
mix_subtitle_data = {
'lang': 'en',
'file': (open('english.srt', 'rb'))
}

mix_api_subtitle = "https://api.mixdrop.co/addsubtitle?email=" + str(api_email) + "&key=" + str(
api_key) + "&ref[]=" + str(ref_id)

mix_subtitle_upload = requests.post(mix_api_subtitle, files=mix_subtitle_data)
mix_subtitle_upload_json = mix_subtitle_upload.json()

print(mix_subtitle_upload_json)


it returns: {'success': False, 'result': {'msg': 'File not found...'}}

am I missing something here? I know I'm just missing some very small.... please help~

@Hyperz (superman please help)

Didn't test it but your code should look something like this:
Python:
import requests

url = 'https://api.mixdrop.co/addsubtitle'
query = {
    'email': 'your_email',
    'key': 'your_key',
    'ref[]': ['file_ref_1', ],
}
data = {'lang': 'en'}
files = {'file': open('english.srt', 'rb')}
resp = requests.post(url, data=data, params=query, files=files)
result = resp.json()

print(result)
 
Back
Top