import requests
auth_token='kbkcmbkcmbkcbc9ic9vixc9vixc9v'
headers = {'Authorization': f'Bearer {auth_token}'}
data = {'app' : 'aaaaa'}
url="https://api.xy.com"
response = requests.post(url, json=data, headers=headers)
print(response)
print(response.json())