API Swagger
Returns current predicted volatility for 1-minute and 60-minute horizons.
The token to predict volatility for, e.g. 'ETH'
ETH
The prediction horizon for the volatility prediction
1min
GET /volatility_prediction HTTP/1.1
Host:
Accept: */*
{
"timestamp": 1738604596657,
"timestamp_str": "2025-02-03T17:43:16.657871Z",
"volatility": 0.0003897691785823554
}
Returns historical predicted volatility for 1-minute and 60-minute horizons.
The token to predict volatility for, e.g. 'ETH'
ETH
The prediction horizon for the volatility prediction
1min
Start date in milliseconds (1738167569855) for filtering historical volatility prediction data
End date in milliseconds (1738171094977) for filtering historical volatility prediction data
GET /volatility_historical HTTP/1.1
Host:
Accept: */*
[
{
"timestamp": 1738604596657,
"timestamp_str": "2025-02-03T17:43:16.657871Z",
"volatility": 0.0003897691785823554
}
]
Provides the current market classification (high, medium, low).
The token to predict volatility for, e.g. 'ETH'
ETH
GET /state_recognize HTTP/1.1
Host:
Accept: */*
{
"timestamp": 1738604596657,
"timestamp_str": "2025-02-03T17:43:16.657871Z",
"classification": "highvol",
"classification_description": "ETH price in highly volatile short momentum, requiring protective measures and caution."
}
Provides the historical market classification (high, medium, low
The token to predict volatility for, e.g. 'ETH'
ETH
Start date in milliseconds (1738167569855) for filtering historical volatility prediction data
End date in milliseconds (1738171094977) for filtering historical volatility prediction data
GET /state_historical HTTP/1.1
Host:
Accept: */*
[
{
"timestamp": 1738604596657,
"timestamp_str": "2025-02-03T17:43:16.657871Z",
"classification": "highvol",
"classification_description": "ETH price in highly volatile short momentum, requiring protective measures and caution."
}
]
Last updated