Velo
APITradingWeb AppTerms of Service
  • API
    • Intro
    • News API
    • Python
    • NodeJS
    • HTTP
    • Columns
  • Trading
    • Intro
    • Setup
    • Usage
  • Web App
    • Intro
    • Chart
      • Table
    • Futures
    • Options
      • Panels
    • Market
    • TradFi
    • VeloAI
  • Terms of Service
    • Terms of Service
Powered by GitBook
On this page

Was this helpful?

  1. API

Intro

NextNews API

Last updated 1 month ago

Was this helpful?

Velo API keys are available at $199/mo.

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

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


All data is available in >=1 minute resolution. The endpoints , , and 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': '1m'
    }
    
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.

subscription
/futures
/options
/spot