GET
/
vaults
/
{vault_id}
/
timeseries
Vault-level timeseries
curl --request GET \
  --url https://0d.finance/api/v1/vaults/{vault_id}/timeseries
{
  "metric": "tvl",
  "timeframe": "all",
  "points": [
    {
      "t": "2025-07-01T00:00:00Z",
      "v": "250000000"
    },
    {
      "t": "2025-08-01T00:00:00Z",
      "v": "300000000"
    }
  ]
}

Path Parameters

vault_id
string
required

Stable vault identifier

Minimum length: 1

Query Parameters

metric
enum<string>
required

Vault-level metric to return

Available options:
tvl,
pnl
timeframe
enum<string>
default:all
Available options:
7d,
30d,
1y,
all
currency
enum<string>
default:USD
Available options:
USD,
USDC

Response

Timeseries

The response is of type object.