Moralis.SolApi.account.getNFTs pagination

Hi, Iโ€™m using Solana API but cannot find a way to paginate method Moralis.SolApi.account.getNFTs. Method param only receive network and address:

interface GetNFTsRequest {
    network?: SolNetworkish;
    address: SolAddressish;
}

Hi @leo89

Pagination is not currently available in Solana endpoints. All the result data is sent in one response so you can paginate it directly on your end.

What happens if the are a lot of NFTs in the response? This isnโ€™t very efficient, APIs should allow some sort of paginations when dealing with list of records.

Hi @johnversus

What happens if the are a lot of NFTs in the response? This isnโ€™t very efficient, APIs should allow some sort of paginations when dealing with list of records.

Do you know if pagination is in the roadmap?

we currently does not have any roadmap for adding this feature.