Issue with 100 records API.getPageUrls

Hi

I am trying to fetch more than 100 rows from Actions.getPageUrls. But, it returns only 100 rows.
What is the solution to get more than 100 records .I have even tried applying the filter_limit =-1 but it returns only 100 records so,
Suggest another way Thanks.

import requests
import pandas as pd

api_url=“https://apirurr

PARAMS = {‘module’: ‘API’,
‘method’:‘Actions.getPageUrls’,
‘period’ : ‘range’,
‘date’: ‘2019-01-01,2020-01-01’,
‘filter_limit’ : ‘-1’,
‘idSite’: ‘1’,
‘format’: ‘JSON’,
‘expanded’ : ‘1’,
‘token_auth’: “anonymous”}

r = requests.post(url = api_url, params = PARAMS, verify=False)
print(r.url)