import requests
url = "https://api.coinapi.io/v1/your_endpoint_here" # Replace with your actual endpoint
headers = {
"X-CoinAPI-Key": "your_api_key_here" # Replace with your actual CoinAPI key
}
response = requests.get(url, headers=headers)
data = response.json()
print(data)