GVol is a Python library to access the GVol API.
Documentation: https://gvol.readthedocs.io/en/latest/index.html
pip install gvol
from gvol import GVol
from gvol import Amberdata
gvol_client = GVol(header='x-oracle', gvol_api_key="ENTER YOUR API KEY HERE")
options_orderbook = gvol_client.options_orderbook(
symbol="BTC", exchange="deribit"
)
print(options_orderbook)
amberdata_client = Amberdata(api_key="ENTER YOUR AD API KEY HERE")
amberdata_client.get_term_structure(currency='BTC', exchange='deribit')