Start Building
Choose your preferred integration method
pip install zenotcPython SDK Docs →from zenotc import ZenOTCClient
client = ZenOTCClient(
api_key="your_key",
api_secret="your_secret"
)
# Create an order
order = await client.execution.create_order(
side="buy",
asset="BTC",
quantity=1.0,
price=50000.00
)
# Get portfolio balances
balances = await client.portfolio.get_balances()
# Stream market data
async for price in client.market_data.stream_prices(["BTC", "ETH"]):
print(f"{price.asset}: {price.mid}")
