Skip to main content
Version: 2.2

Pagination

What Is Pagination?​

Pagination is the process of dividing the responses from an API into multiple pages of results. This allows for faster response times for end users by reducing the amount of data that needs to be returned with each request.

API pagination is used to control the amount of data that is returned for each request, as well as the order of the data.

What Is Cursor Pagination?​

Cursor pagination uses a pointer, or cursor, to identify a specific item in the dataset. This pointer is sent with requests to the server, and in response, it sends back the data after the given item.

It’s ideal if you want to pull a long list of records from the API since its performance remains constant.

Cursor Pagination With Moralis API​

Every request will return a cursor that can be used to get the next result until there are no more results to return.

NodeJS example​

const Moralis = require("moralis").default;
const fs = require("fs");
const { EvmChain } = require("@moralisweb3/common-evm-utils");

const init = async () => {
const address = "0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB"; //Cryptopunks contract address
const chain = EvmChain.ETHEREUM;

await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});

const planRateLimit = 150; // find throughput based on your plan here: https://moralis.io/pricing/#compare
const endpointRateLimit = 5; // find endpoint rate limit here: https://docs.moralis.io/web3-data-api/evm/reference/compute-units-cu#rate-limit-cost
let allowedRequests = planRateLimit / endpointRateLimit;
let cursor = null;
let owners = {};

do {
if (allowedRequests <= 0) {
// wait 1.1 seconds
await new Promise((r) => setTimeout(r, 1100));
allowedRequests = planRateLimit / endpointRateLimit;
}

const response = await Moralis.EvmApi.nft.getNFTOwners({
address,
chain,
limit: 100,
cursor: cursor,
});

console.log(`On page ${response.pagination.page}`);

for (const NFT of response.result) {
if (NFT.ownerOf.checksum in owners) {
owners[NFT.ownerOf.checksum].push({
amount: NFT.amount,
owner: NFT.ownerOf,
tokenId: NFT.tokenId,
tokenAddress: NFT.tokenAddress,
});
} else {
owners[NFT.ownerOf.checksum] = [
{
amount: NFT.amount,
owner: NFT.ownerOf,
tokenId: NFT.tokenId,
tokenAddress: NFT.tokenAddress,
},
];
}
}
cursor = response.pagination.cursor;
allowedRequests--;
} while (cursor != "" && cursor != null);

//save owners in a json file
fs.writeFileSync("owners.json", JSON.stringify(owners));

console.log("total owners:", Object.keys(owners).length);
};

init();

Python example​

import json
import time
from moralis import evm_api

api_key = "YOUR_API_KEY"
address = "0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB"
chain = "0x1"


def get_all_nft_owners(chain, address):
plan_rate_limit = 150
endpoint_rate_limit = 5
allowed_requests = plan_rate_limit / endpoint_rate_limit

cursor = ""
owners = {}

response = evm_api.nft.get_nft_owners(
api_key=api_key,
params={
"chain": chain,
"address": address,
"cursor": cursor,
},
)

cursor = response["cursor"]
print(f"On page {response['page']}")

for nft in response["result"]:
if nft["owner_of"] in owners:
owners[nft["owner_of"]].append(
{
"amount": nft["amount"],
"owner": nft["owner_of"],
"token_id": nft["token_id"],
"token_address": nft["token_address"],
}
)
else:
owners[nft["owner_of"]] = [
{
"amount": nft["amount"],
"owner": nft["owner_of"],
"token_id": nft["token_id"],
"token_address": nft["token_address"],
}
]

while cursor != "" and cursor is not None:
if allowed_requests <= 1:
time.sleep(1.1)
allowed_requests = plan_rate_limit / endpoint_rate_limit

response = evm_api.nft.get_nft_owners(
api_key=api_key,
params={
"chain": chain,
"address": address,
"cursor": cursor,
},
)
print(f"On page {response['page']}")
for nft in response["result"]:
if nft["owner_of"] in owners:
owners[nft["owner_of"]].append(
{
"amount": nft["amount"],
"owner": nft["owner_of"],
"token_id": nft["token_id"],
"token_address": nft["token_address"],
}
)
else:
owners[nft["owner_of"]] = [
{
"amount": nft["amount"],
"owner": nft["owner_of"],
"token_id": nft["token_id"],
"token_address": nft["token_address"],
}
]

cursor = response["cursor"]
allowed_requests -= 1

print(f"Total owners: {len(owners)}")
return owners


owners = get_all_nft_owners(chain=chain, address=address)

# save owners in a json file
with open("owners.json", "w") as file:
json.dump(owners, file)
Limit param

The limit param can only be set in the initial call, you cannot change the limit value after the first result.