getAddressNFTs
Retrieve a list of NFTs owned by a specific address across supported blockchain networks. Input chain ID and wallet address to access detailed ownership data.
Instructions
Get list of NFTs owned by address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
chain | Yes | Chain ID for the blockchain network. Supports: 1, 137, 42161, 10, and 8453 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"type": "string"
},
"chain": {
"anyOf": [
{
"enum": [
"1",
"137",
"42161",
"10",
"8453"
],
"type": "string"
},
{
"allOf": [
{
"type": "number"
},
{
"enum": [
"1",
"137",
"42161",
"10",
"8453"
],
"type": "string"
}
]
}
],
"description": "Chain ID for the blockchain network. Supports: 1, 137, 42161, 10, and 8453"
}
},
"required": [
"chain",
"address"
],
"type": "object"
}