API Swagger
Returns current predicted volatility for 1-minute and 60-minute horizons.
The token to predict volatility for, e.g. 'ETH'
ETHThe prediction horizon for the volatility prediction
1minSuccessful Response
Validation Error
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'
ETHThe prediction horizon for the volatility prediction
1minStart date in milliseconds (1738167569855) for filtering historical volatility prediction data
End date in milliseconds (1738171094977) for filtering historical volatility prediction data
Successful Response
Validation Error
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'
ETHSuccessful Response
Validation Error
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'
ETHStart date in milliseconds (1738167569855) for filtering historical volatility prediction data
End date in milliseconds (1738171094977) for filtering historical volatility prediction data
Successful Response
Validation Error
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