Policy enforcement, on-chain blacklists, and cryptographic authorization — before any payment executes.
import requests
response = requests.post(
"https://dreamline-backend.onrender.com/proxy/pay",
headers={"X-Dreamline-Key": "dlk_your_key"},
json={"amount_usd": 0.01, "destination": "api.coingecko.com",
"task_description": "Fetch BTC price"}
)
if response.json()["approved"]:
print("✓ Payment authorized:", response.json()["transaction_id"])
else:
print("✗ Blocked:", response.json()["block_reason"])Sign in with GitHub. First protection in 30 seconds.
Get API Key — Free →