### Fetch Futures Data with Python Source: https://velodata.gitbook.io/velo-data-api Use the Velo Python library to fetch futures data. Ensure you have an API key and specify parameters like type, columns, exchanges, products, time range, and resolution. ```python from velodata import lib as velo client = velo.client('api_key') ten_minutes_ms = 1000 * 60 * 10 params = { 'type': 'futures', 'columns': ['close_price', 'funding_rate'], 'exchanges': ['binance-futures', 'bybit'], 'products': ['BTCUSDT'], 'begin': client.timestamp() - ten_minutes_ms, 'end': client.timestamp(), 'resolution': '1m' } print(client.get_rows(params)) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.