No metadata for nft of Camelot dex on arbitrum

hi,

morails doesnot return metadata for nfts of the camelot position on arbitrum network. can you please check what is the issue?

here is info of API.
https://arbiscan.io/address/0x00c7f3082833e796a5b3e4bd59f6642ff44dcd15

import Moralis from ‘moralis’;

try {
await Moralis.start({
apiKey: “”
});

const response = await Moralis.EvmApi.nft.getNFTMetadata({
“chain”: “0xa4b1”,
“format”: “decimal”,
“normalizeMetadata”: true,
“mediaItems”: true,
“address”: “0x00c7f3082833e796a5b3e4bd59f6642ff44dcd15”,
“tokenId”: “12107”
});

console.log(response.raw);
} catch (e) {
console.error(e);
}