Build your trading applications on top of our high-performance infrastructure.
# Install our SDK pip install nexustrade-sdk npm install nexustrade-sdk
import nexustrade
client = nexustrade.Client(api_key='your_api_key')
balance = client.account.balance()
print(f"Available: ${balance.available}")
order = client.trade.order(symbol='BTC-USD', side='BUY', quantity=0.1, type='MARKET')
print(f"Order ID: {order.id}")
pip install nexustrade
npm install nexustrade
gem install nexustrade
Maven: nexustrade-java