The Python SDK’s get_analytics_details seems to cap results at 2000 rows. I’m building a daily export job to S3 using boto3. Calling the API in a loop with next_page_token works, but it’s slow for high-volume queues. Is there a way to increase the size parameter beyond the default limit in the request payload, or should I just parallelize the token fetches? Here’s the loop structure I’m using. It feels brittle.