...
Item | Value | Description |
---|---|---|
Time Horizon | 5 Minutes | Period of time after which the limit count will reset. |
Limit | 200 Requests | Maximum requests a distinct caller can make within the time horizon. |
Response Code | 429 | HTTP code after limit is reached |
Pagination
The default records returned per call is (up to) 25, and the maximum number that can be returned is 100. We provide limit and offset parameters to allow navigation through larger data sets. Responses include a count field, which specifies the total number of records available via pagination. For performance reasons, the offset parameter is limited to a maximum value of 50000.Here's an example of sequential requests to paginate through the most recent 300 listings, 50 at a time:USTA API supports pagination where indicated in the Swagger document. Pagination is used to increase cliient application performance by reducing the amount of data dragged across the wire. For api calls that respond with large data sets, USTA supports an Offset/PageSize paradigm. The result set is broken up in pages containing the specified number of documents per page. The client applicationn increases the page number until the response contains less than pageSize. Once the response contains less than pageSize, processing for this call has completed.
Panel |
---|
"pagination" : { "currentPage" :1, "pageSize" : 20 } |
...