import requests url = "https://ain-el-aql-backend-production.up.railway.app/auth/login" try: # Try with empty json to see what happens r = requests.post(url, json={}, headers={"Accept": "application/json"}, timeout=10) print(f"Status: {r.status_code}") print(f"Response: {r.json()}") except Exception as e: print(f"Error: {e}")