Options
Use Synth API for options pricing and trading.
Get Option Prices
response = requests.get(
"https://api.synthdata.co/insights/option-pricing",
headers={"Authorization": "Apikey YOUR_API_KEY"},
params={"asset": "BTC"}
)
options = response.json()['options']Find Mispriced Options
for option in options:
synth_call = option['call_price']
market_call = get_market_price(option['strike'])
edge = (market_call - synth_call) / synth_call
if edge > 0.05:
print(f"SELL {option['strike']} call - {edge:.1%} edge")