NFT Metadata Access

Gets the metadata associated with a given Contract.

GET GET/nft/{chain}/{token}/getContractMetadata

curl "http://nft.chainup.net/scroll_mainnet/token/v1/getOwnersForNFT?token_id={TOKEN_ID}&contract_address={CONTRACT_ADDRESS}"

Gets the metadata associated with a given Contract.

GET /nft/{chain}/{token}/getContractMetadataBatch

curl -X POST "http://nft.chainup.net/scroll_mainnet/token/v1/getContractMetadataBatch" --data '{"contract_addresses": ["{CONTRACT_ADDRESSES_1}", "{CONTRACT_ADDRESSES_2}" ]}'

Gets the metadata associated with a given NFT.

GET /nft/{chain}/{token}/getNFTMetadata

curl "http://nft.chainup.net/scroll_mainnet/token/v1/getNFTMetadata?contract_address={CONTRACT_ADDRESSES_1}&token_id={TOKEN_ID}&token_type=ERC721"

Gets the metadata associated with a given NFT.

POST /nft/{chain}/{token}/getNFTMetadataBatch

curl -X POST "http://nft.chainup.net/scroll_mainnet/token/v1/getNFTMetadataBatch" --data '{"tokens":[{"contract_address": "{CONTRACT_ADDRESSES_1}", "token_id": {TOKEN_ID} }]}'

Gets the metadata associated with a given Contract.

GET /nft/{chain}/{token}/searchContractMetadata

curl -X GET "http://nft.chainup.net/scroll_mainnet/token/v1/searchContractMetadata?query=Meme"

Last updated