Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dollarpe.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Python SDK for DollarPe API integration
Coming Soon! Our 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.