getPairAddress Function

can we use getPairAddress function with 1inch network?
if yes, what is the exact exchange’s name?
I changed exchange: “pancakeswapv2”, with exchange: “1inch”,
but got Error (Uncaught Error: Invalid exchange)

const options = {
  token0_address: "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
  token1_address: "0xe9e7cea3dedca5984780bafc599bd69add087d56",
  exchange: "pancakeswapv2",
  chain: "bsc"
 };
const pairAddress = await Moralis.Web3API.defi.getPairAddress(options);

probably it doesn’t work with 1inch

can we use function like quote with pancakeswapv2 ?
to return the same results…

const quote = await Moralis.Plugins.oneInch.quote({
    chain: 'bsc', // The blockchain you want to use (eth/bsc/polygon)
    fromTokenAddress: currentTrade.from.address, // The token you want to swap
    toTokenAddress: currentTrade.to.address, // The token you want to receive
    amount: amount,
  });

you mean in 1Inch plugin or completely separately for PancakeSwap?

completely separately for PancakeSwap?

it should be possible somehow to do that, I don’t know exactly how to do it