Python

Python SDK for DollarPe API integration

Coming Soon! Our Python SDK is currently under development. Stay tuned for updates.

What to Expect

Our Python SDK will provide:

  • Easy-to-use client for DollarPe API
  • Type-safe request and response handling
  • Comprehensive examples and tutorials
  • Comprehensive error handling
  • Full API coverage

In the meantime, you can use our REST API directly with any Python HTTP client like requests:

import requests

API_KEY = "your-api-key"
API_SECRET = "your-api-secret"

# Example request to fetch exchange rate
response = requests.post(
    "https://sandbox.dollarpe.xyz/pos/api/v1/payout/fetch-rate",
    headers={
        "X-API-KEY": API_KEY,
        # Add other required headers
    },
    json={
        "asset": "USDT",
        "network": "BSC",
        "amount": 100.5
    }
)

print(response.json())

Want early access?

Contact our team to get notified when the Python SDK is available.