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
  • Examples
  • Helper Methods
  • Data Methods

Was this helpful?

  1. API

HTTP

HTTP endpoints

PreviousNodeJSNextColumns

Last updated 1 month ago

Was this helpful?

Base: https://api.velo.xyz/api/v1/

Examples

Quick Start
$ curl -v --user "api:api_key" "https://api.velo.xyz/api/v1/caps?coins=BTC,ETH"

Helper Methods

  • Key status: /status

  • Supported futures: /futures

  • Supported options: /options

  • Supported spot pairs: /spot


Data Methods

Get rows

/rows

  • type: 'futures', 'options', or 'spot'

  • exchanges, products, coins, columns: comma separated for multiple

  • begin, end: millisecond timestamp

  • resolution: minutes or resolution string

Returns text in CSV format

HTTP requests are limited to returning 22500 values per request. See an example implementation of request batching

If both `coins` and `products` are specified, only `products` will be used

Get options term structure

/terms

  • coins: comma separated for multiple

Returns text in CSV format

Latest values only

Get market caps

/caps

  • coins: comma separated for multiple

Returns text in CSV format

Latest values only

here