API Use Case

Options Key Levels API

Pull options-derived support and resistance levels in one request. Use this endpoint to power daily prep, alerting, and decision support in your trading workflow.

Endpoint:

GET https://thetavantage.com/api/v1/key-levels?symbol=SPY&api_key=tvk_YOUR_KEY

Core Fields

  • call_wall and put_wall for options-driven resistance and support.
  • hedge_wall for likely dealer hedging inflection.
  • max_pain and expected_move for context and risk framing.

Example Request

curl "https://thetavantage.com/api/v1/key-levels?symbol=SPY&api_key=tvk_YOUR_KEY"

Example Alert Rule

if price >= call_wall - 0.25:
    send_alert("SPY near call wall")

if price <= put_wall + 0.25:
    send_alert("SPY near put wall")