ddownload.com

Active Member
Corporate Membership
1,294
2018
2,492
11,325

yhjTImG.png


Discussion Thread
 
Last edited:
6,484 comments
Code:
import requests,time
lastUpdate = time.time()
lastBalance = 0.0
DDLApi = "YourAPI"
while True:
    try:
        data = requests.get("https://api-v2.ddownload.com/api/account/info?key="+DDLApi,timeout=20)
        if data.json()['result']['balance'] != lastBalance:
            print("Balance updated after",round((time.time() - lastUpdate)/60,2),"mins")
            print("Old Balance:",round(float(lastBalance),2),"New Balance:",round(float(data.json()['result']['balance']),2))
            lastBalance = data.json()['result']['balance']
            lastUpdate = time.time()
    except:
        print("Error")
        pass
    time.sleep(60)

useful for anyone that wants to keep track on how long it can be between balance changes with DDL.
 
Last edited:
Hello Sir,
I have pending payment since 01-14 (BTC)
Your requested payout will always be paid within a week to a maximum of 10 days. In case of unpaid amounts within 10 days, please open a support ticket. Make sure that you always request a payout before Friday.

You will receive your money on 01/29/2023
 
Last edited:
Since the 14th was a Saturday, the processing time started from this Friday (20th) so it should be a week to 10 days after Friday. Usually the following Monday/Tuesday for btc, so the Monday/Tuesday coming.
 
Back
Top