Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
查詢和分析交易數據
# Python: 獲取最近交易 trades = client.get_trades(token_id="YOUR_TOKEN_ID") for trade in trades[:10]: print(f"價格: {trade['price']}") print(f"數量: {trade['size']}") print(f"時間: {trade['timestamp']}")