Hi all,
I'm having trouble getting raw data from Klaviyo through the Python API. Data is limited to 100 rows. How can I get more than 100 rows in the result?
My script:
url = "https://a.klaviyo.com/api/v1/metrics/timeline?since=2022-01-01?count=100&sort=asc&api_key=****"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers).json()
Please help!