Pagination
Springstreet supports pagination API requests to retrieve larger lists of information.
Controlling Pagination
Parameter
Type
Required
Description
Reading the Response
Field
Type
Description
{
"ucc_liens": [
// ... 5 lien results for page 1
],
"pagination": {
"current_page": 1,
"total_pages": 120,
"page_size": 5
},
"response_metadata": {
"timestamp": "2025-09-02T23:01:45.123Z",
"request_id": "b4a3c2d1-e5f6-7890-1234-abcdef123456"
}
}How to Loop Through All Pages
Last updated