import requests
response = requests.get(
"https://api.videodb.io/billing/auto_recharge",
headers={"x-access-token": "your_api_key"}
)
auto_recharge = response.json()
print(f"Enabled: {auto_recharge.get('enabled')}")
print(f"Threshold: {auto_recharge.get('threshold_credits')}")
print(f"Recharge Amount: {auto_recharge.get('recharge_amount')}")