Dataset catalogue
| Plan | Name | Description | Format | Size | Last updated | Links |
|---|---|---|---|---|---|---|
| Free | Vault metadata (sample) vault-metadata.sample.json | Limited data sample covering only vaults on the Ethereum blockchain | JSON | 25.7 MB | Documentation Download | |
| Free | Vault prices (sample) vault-historical.sample.parquet | Limited data sample covering only vaults on the Ethereum blockchain | Parquet | 38.6 MB | Documentation Download | |
| Pro | Vault metadata vault-metadata.json | Summary JSON for tracked vaults, including identity, chain, protocol, performance, fees and status fields. | JSON | 72.1 MB | Documentation Download | |
| Pro | Vault prices vault-historical.parquet | Share price, TVL history in Parquet format, suitable for offline analysis, chart generation, and backtesting-style workflows. | Parquet | 244.4 MB | Documentation Download | |
| Pro | Crypto cleaned prices crypto-cleaned-vault-prices-1d.parquet | Vaults with BTC and ETH denominations. Performance metrics of these vaults have been calculated against the underlying token and they are not directly comparable to stablecoin vaults. | Parquet | 68.5 MB | Documentation Download | |
| Pro | Crypto metadata crypto-vault-metadata.json | Vaults with BTC and ETH denominations. Performance metrics of these vaults have been calculated against the underlying token and they are not directly comparable to stablecoin vaults. | JSON | 97.5 MB | Documentation Download | |
| Pro | Exchange rates exchange-rates.parquet | Historical exchange rates in Parquet format for converting and comparing dataset values across currencies. | Parquet | 102.6 KB | Documentation Download |
Download with curl
Programmatically access the data. Requires a valid API key you can enter above.
export TRADING_STRATEGY_API_KEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"
# Vault metadata
curl -L "https://tradingstrategy.ai/vaults/datasets/download/vault-metadata?api-key=$TRADING_STRATEGY_API_KEY" --output vault-metadata.json
# Vault prices
curl -L "https://tradingstrategy.ai/vaults/datasets/download/vault-prices?api-key=$TRADING_STRATEGY_API_KEY" --output vault-historical.parquet
# Crypto cleaned prices
curl -L "https://tradingstrategy.ai/vaults/datasets/download/crypto-cleaned-prices?api-key=$TRADING_STRATEGY_API_KEY" --output crypto-cleaned-vault-prices-1d.parquet
# Crypto metadata
curl -L "https://tradingstrategy.ai/vaults/datasets/download/crypto-metadata?api-key=$TRADING_STRATEGY_API_KEY" --output crypto-vault-metadata.json
# Exchange rates
curl -L "https://tradingstrategy.ai/vaults/datasets/download/exchange-rates?api-key=$TRADING_STRATEGY_API_KEY" --output exchange-rates.parquet