{
"meta": {
"count": 0,
"pageCount": 1,
"totalCount": 52,
"next": null,
"previous": "/api/v2/delegates/dated/voters?page=99&limit=100",
"self": "/api/v2/delegates/dated/voters?page=100&limit=100",
"first": "/api/v2/delegates/dated/voters?page=1&limit=100",
"last": "/api/v2/delegates/dated/voters?page=1&limit=100"
},
"data": []
}
{ pageCount: 1, totalCount: 100 }
// correct values?
{ pageCount: 3, totalCount: 233 }
// from here onwards:
// pageCount = page - 1
// totalCount = (page - 1) * 100
{ pageCount: 3, totalCount: 300 }
{ pageCount: 999, totalCount: 99900 }
When the passed page value is bigger than the
pageCountproperty the API still sets thepreviouspropertyhttps://explorer.ark.io/api/v2/delegates/dated/voters?page=100
pageCountandtotalCountchange value based on the passed page paramhttps://explorer.ark.io/api/v2/wallets/cryptology/transactions/received?page=2
https://explorer.ark.io/api/v2/wallets/cryptology/transactions/received?page=3
https://explorer.ark.io/api/v2/wallets/cryptology/transactions/received?page=4
https://explorer.ark.io/api/v2/wallets/cryptology/transactions/received?page=1000