fetchNftsOwnedByMultichainAddresses
Retrieve NFTs owned by multichain wallet addresses across specified blockchain networks. Configure filters to exclude or include specific NFT types and adjust spam confidence levels for accurate results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addresses | Yes | A list of wallet address and network pairs | |
pageKey | No | The cursor to start the search from. Use this to paginate through the results. | |
pageSize | No | The number of results to return. Default is 100. Max is 100 | |
withMetadata | No | Whether to include metadata in the results. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addresses": {
"description": "A list of wallet address and network pairs",
"items": {
"additionalProperties": false,
"properties": {
"address": {
"description": "The wallet address to query. e.g. \"0x1234567890123456789012345678901234567890\"",
"type": "string"
},
"excludeFilters": {
"default": [
"SPAM",
"AIRDROPS"
],
"description": "The filters to exclude from the results. e.g. [\"SPAM\", \"AIRDROPS\"]",
"items": {
"enum": [
"SPAM",
"AIRDROPS"
],
"type": "string"
},
"type": "array"
},
"includeFilters": {
"default": [],
"description": "The filters to include in the results. e.g. [\"SPAM\", \"AIRDROPS\"]",
"items": {
"enum": [
"SPAM",
"AIRDROPS"
],
"type": "string"
},
"type": "array"
},
"networks": {
"default": [
"eth-mainnet"
],
"description": "The blockchain networks to query. e.g. [\"eth-mainnet\", \"base-mainnet\"]",
"items": {
"type": "string"
},
"type": "array"
},
"spamConfidenceLevel": {
"default": "VERY_HIGH",
"description": "The spam confidence level to query. e.g. \"LOW\" or \"HIGH\"",
"enum": [
"LOW",
"MEDIUM",
"HIGH",
"VERY_HIGH"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": "array"
},
"pageKey": {
"description": "The cursor to start the search from. Use this to paginate through the results.",
"type": "string"
},
"pageSize": {
"default": 10,
"description": "The number of results to return. Default is 100. Max is 100",
"type": "number"
},
"withMetadata": {
"default": true,
"description": "Whether to include metadata in the results.",
"type": "boolean"
}
},
"required": [
"addresses"
],
"type": "object"
}