List operations paginate their responses with 100 items per page.

To access a specific page of data use the page query parameter as follows:

cURL
1curl \
2 --request GET \
3 --url https://sandbox-api.withabound.com/v4/tin-verifications?page=3 \
4 --header 'Authorization: Bearer appId_test48e7eaa3175a66354e00626542d2.appSecret_testf54672359db6693429e1d3e14e2c' \
5 --header 'Content-Type: application/json'
JSON
1[
2 {
3 "id": "tinVerificationId_sample41SD71AV8f",
4 "createdAt": "2023-01-01T00:00:00.000Z",
5 "status": "MATCH",
6 "name": "Ada Lovelace",
7 "tin": "*******00",
8 "tinType": "INDIVIDUAL",
9 "tinFingerprint": "tinFingerprint_samplehy2BWO6JJG"
10 },
11 {
12 "id": "tinVerificationId_sampleRE82BW9e52",
13 "createdAt": "2023-01-01T00:00:00.000Z",
14 "status": "MATCH",
15 "name": "Hooli",
16 "tin": "*******11",
17 "tinType": "BUSINESS",
18 "tinFingerprint": "tinFingerprint_sample8Kj3d8UiY8"
19 }
20 //...98 more items
21]

You will know you’ve hit the last page with a list operations returns less than 100 records.