Cursor not working

As Iā€™m working to process through large batches of NFTs using the /nft/transfers endpoint, when I call a query with a cursor, Iā€™m getting an ā€œInvalid Cursorā€ error. This is reproducable within swagger UI

Using the cursor from that first query:

Hereā€™s the first query:

And the full curls:

First query (works):

curl -X 'GET' \
  'https://deep-index.moralis.io/api/v2/nft/transfers?chain=eth&from_block=3918216&to_block=3928216&format=decimal' \
  -H 'accept: application/json' \
  -H 'X-API-Key: MY KEY'

Second query (invalid cursor):

curl -X 'GET' \
  'https://deep-index.moralis.io/api/v2/nft/transfers?chain=eth&from_block=3918216&to_block=3928216&format=decimal&cursor=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJvcmRlciI6IkRFU0MiLCJvZmZzZXQiOjUwMCwibGltaXQiOjUwMCwidG9fYmxvY2siOiIzOTI4MjE2IiwiZnJvbV9ibG9jayI6IjM5MTgyMTYiLCJwYWdlIjoxLCJ3aGVyZSI6e30sImlhdCI6MTY0Mjk1NjM4M30.UoL_1TyiXGuOxQYN4J4Gsvn1XSInBF2Xh4v65pSLDoY' \
  -H 'accept: application/json' \
  -H 'X-API-Key: MY KEY'

You can try without cursor for now, we are working on fixing it