Authentication
Getting an API Key
Using Your API Key
Authorization: Apikey YOUR_API_KEYExample
curl "https://api.synthdata.co/insights/volatility?asset=BTC" \
-H "Authorization: Apikey YOUR_API_KEY"Security
import os
api_key = os.environ.get("SYNTH_API_KEY")
headers = {"Authorization": f"Apikey {api_key}"}Last updated