I have been using “react-moralis”: “^1.4.0” for a while now. Few weeks ago I am getting 400 without error message when calling Moralis.Web3API.token.searchNFTs. Please advise but keep in mind that updating to version 2 is not an option right now.
If I search for “bored” it fails. If I search for “bored apes” it succeeds.
This a snippet of what I am using:
try {
const options = {
q: searchQuery,
chain: chain,
filter: “name”,
limit: 100,
};
const response = await Moralis.Web3API.token.searchNFTs(options);
} catch (error) {
console.log("error ", error);
}