How to view all data which is returned by appstore connect API

The following API returns 16000 total entries in POSTMAN. It shows only 200 entries. How to view all the entries

https://api.appstoreconnect.apple.com/v1/apps/%7Bapp_id%7D/pricePoints

        "paging": {
            "total": 16625,
            "limit": 200
        }
    }

https://developer.apple.com/documentation/appstoreconnectapi/paginginformation/paging- This page tells about the total and limit. How to view the all the entries

How to view all data which is returned by appstore connect API
 
 
Q