API Swagger
Returns current predicted volatility for 1-minute and 60-minute horizons.
The token to predict volatility for, e.g. 'ETH'
ETHSuccessful Response
The UTC timestamp (in milliseconds) indicating when the prediction was made.
1738604596657The UTC timestamp indicating when the prediction was made.
2025-02-03T17:43:16.657871ZThe predicted volatility.
0.0003897691785823554Validation Error
GET /volatility_prediction HTTP/1.1
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'
ETHStart date in milliseconds (1738167569855) for filtering historical volatility prediction data
End date in milliseconds (1738171094977) for filtering historical volatility prediction data
Successful Response
The UTC timestamp (in milliseconds) indicating when the prediction was made.
1738604596657The UTC timestamp indicating when the prediction was made.
2025-02-03T17:43:16.657871ZThe predicted volatility.
0.0003897691785823554Validation Error
GET /volatility_historical HTTP/1.1
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
The UTC timestamp (in milliseconds) indicating when the prediction was made.
1738604596657The UTC timestamp indicating when the prediction was made.
2025-02-03T17:43:16.657871ZThe volatility status of the market.
highvolA detailed description of the volatility status of the market.
ETH price in highly volatile short momentum, requiring protective measures and caution.Validation Error
GET /state_recognize HTTP/1.1
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
The UTC timestamp (in milliseconds) indicating when the prediction was made.
1738604596657The UTC timestamp indicating when the prediction was made.
2025-02-03T17:43:16.657871ZThe volatility status of the market.
highvolA detailed description of the volatility status of the market.
ETH price in highly volatile short momentum, requiring protective measures and caution.Validation Error
GET /state_historical HTTP/1.1
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