import requests
import time

API_URL = "https://38.226.184.125:17122/cdr"

params = {
    "time_start": "2025-11-01 00:00:00",
    "time_end": "2025-11-30 23:59:59",
    "timestamp": int(time.time())
}

headers = {
    "Authorization": f"Bearer {token}",
    "Accept": "application/json"
}

response = requests.get(API_URL, headers=headers, params=params, verify=False)

print("STATUS:", response.status_code)
print(response.text)

