Pagination
2 min
talent protocol api will have pagination on endpoints that return sets of data how it works in order to paginate requests api consumers will need to check the pagination field inside each response check the following response example { followers \[ ], pagination { total 100, next cursor "042a900c 06e6 47a0 8de3 b9a63c24a33b" } } in order to fetch the next page a new request will need to be performed with the next cursor value being passed as a query param https //api talentprotocol com/api/v1/followers?id=\<id>\&next cursor=\<next cursor> you can learn more about this in the next chapter