Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.0xradar.app/llms.txt

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

Python SDK

A native Python SDK for 0xRadar is in development.

Installation (coming soon)

pip install zeroxradar

Planned interface

from zeroxradar import Client

client = Client(api_key="rk_live_xxx")

# Single chain
balances = client.balances(
    address="0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    chain="ethereum"
)

# Multi-chain portfolio
portfolio = client.portfolio(
    address="0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    chains=["ethereum", "base"]
)

# Sweep quote
quote = client.sweep_quote(
    address="0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    chains=["eth", "base"],
    target_chain="base"
)

Current workaround

Until the SDK is published, use httpx directly as shown in the API Reference.
Star 0xradarapp/sdk-python on GitHub to get notified on release.