import requestsurl ="https://api.keywordsai.co/api/user/detail/some_customer_identifier"api_key ="YOUR_KEY"# Replace with your actual Keywords AI API keyheaders ={"Authorization":f"Bearer {api_key}","Content-Type":"application/json"}response = requests.get(url, headers=headers)print(response.json())