I’m not getting results when querying names that are more than 1 word using searchNFTs().
If you try it here: https://admin.moralis.io/web3apis#operations-token-searchNFTs
chain: 'polygon',
format: 'decimal',
q: 'Zee Cross', // this is the name
filter: 'name, attributes',
from_block: 27230262,
token_address: "0x67F4732266C7300cca593C814d46bee72e40659F",
limit: 30
This returns zero results when there should be 1.
If you change query to “Buterin” you get a bunch of results.
It seems like the space in the name messes up the query.
Also, if I change q=“Cross” and filter=“name” I get results from other NFT collections but I’ve stated token_address=“0x67F4732266C7300cca593C814d46bee72e40659F” so not sure why it’s giving me these other results.