Intro

Velo API keys are available at $199/mo.

Subscriptions are payable monthly (3 month history) or yearly (full data history).

Please see the subscription page in the web app to get a key or request a trial.


All data is available in >=1 minute resolution. The endpoints /futures, /options, and /spot can be used without authentication to view available products and their histories. See the Columns page for available data types.

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': 1
    }
    
print(client.get_rows(params))

The API can be accessed via HTTP/Curl, our Python library, or our NodeJS library. Access also includes the ability to download CSV data from applicable charts via the webapp.

Last updated