import requests

def get_bid_ask_price():
url = "https://www.bitexen.com/api/v1/ticker/USDTTRY"
response = requests.get(url)

if response.status_code == 200:
data = response.json()
bid_price = data['bid']
ask_price = data['ask']
return bid_price, ask_price
else:
print("Error: Unable to fetch data from the API.")
return None, None

bid, ask = get_bid_ask_price()
if bid is not None and ask is not None:
print("Bid Price: ", bid)
print("Ask Price: ", ask)