import requests
# Constants
ENDPOINT = "https://hyperhuman.deemos.com/api/v2/check_balance"
API_KEY = "your api key" # Replace with your actual API key
# Prepare the headers
headers = {
'Authorization': f'Bearer {API_KEY}',
}
# Make the GET request
response = requests.get(ENDPOINT, headers=headers)
# Parse and return the JSON response
print(response.json())