Is SPXW historical data available in the research environment?

qb = QuantBook()
index_symbol = qb.add_index('SPX').symbol
option = qb.add_index_option(index_symbol, "SPXW") # or qb.add_index_option(index_symbol, "VIXW")
option.set_filter(-2, 2, 0, 90)
history = qb.option_history(option.symbol, datetime(2020, 6, 1), datetime(2020, 6, 5))
history_df = history.data_frame
expiries = history.get_expiry_dates() 
strikes = history.get_strikes()

print(history_df)

The above never yields any data; however, when pulling VIXW this works.