1. API

Provides the flexibility to call Xtreamly model predictions via any digital ecosystem

Traditional trading signals and execution strategies often fail to adapt to real-time volatility shifts. Xtreamly changes the game by providing AI-driven volatility intelligence that enhances trade signals, execution, and risk management, creating a competitive edge for trading firms, market makers, and quant funds.

More details on our swagger docs: https://xtreamly.io/api

Volatility Predictions

Returns current predicted volatility for 1-minute and 60-minute horizons.

get

/volatility_prediction

Query parameters
symbolSymbol

The token to predict volatility for, e.g. 'ETH'

horizonHorizon

The prediction horizon for the volatility prediction

Responses
curl -L \
  --url '/volatility_prediction'
{
  "timestamp": 1738604596657,
  "timestamp_str": "2025-02-03T17:43:16.657871Z",
  "volatility": 0.0003897691785823554
}

Historical Volatility Predictions

Returns historical predicted volatility for 1-minute and 60-minute horizons.

get

/volatility_historical

Query parameters
symbolSymbol

The token to predict volatility for, e.g. 'ETH'

horizonHorizon

The prediction horizon for the volatility prediction

start_dateStart Date

Start date in milliseconds (1738167569855) for filtering historical volatility prediction data

end_dateEnd Date

End date in milliseconds (1738171094977) for filtering historical volatility prediction data

Responses
curl -L \
  --url '/volatility_historical'
[
  {
    "timestamp": 1738604596657,
    "timestamp_str": "2025-02-03T17:43:16.657871Z",
    "volatility": 0.0003897691785823554
  }
]

Market State Predictions

Provides the current market classification (high, medium, low).

get

/state_recognize

Query parameters
symbolSymbol

The token to predict volatility for, e.g. 'ETH'

Responses
curl -L \
  --url '/state_recognize'
{
  "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."
}

Historical Market State Predictions

Provides the historical market classification (high, medium, low

get

/state_historical

Query parameters
symbolSymbol

The token to predict volatility for, e.g. 'ETH'

start_dateStart Date

Start date in milliseconds (1738167569855) for filtering historical volatility prediction data

end_dateEnd Date

End date in milliseconds (1738171094977) for filtering historical volatility prediction data

Responses
curl -L \
  --url '/state_historical'
[
  {
    "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."
  }
]

Health

get

/

Responses
curl -L \
  --url '/'

No body

Last updated