import { Mobula } from "mobula-sdk";

const mobula = new Mobula("YOUR_API_KEY_HERE");

mobula
  .fetchWalletNFTs({
    wallet: "0xCe90a7949bb78892F159F428D0dC23a8E3584d75",
  })
  .then((response) => {
    console.log(response);
  })
  .catch((error) => {
    console.error("Error:", error);
  });

Learn more about the parameters in the REST API documentation