Get NFTs by wallet address
Returns a paginated list of NFTs owned by the specified wallet address. Supports cursor-based pagination via openseaNextToken.
Parameters
chainIds
* array queryList of blockchain network IDs to query
address
* string queryWallet address of the NFT owner
limit
number queryThe maximum number of assets to return
offset
number queryThe offset number of assets to return
openseaNextToken
string queryThe cursor for the next page of results. This is returned from a previous request.
Request Body
This request doesn’t have any request body.
JavaScript
Copy
1
Returns
200
400
401
500
Paginated response containing NFT assets and pagination cursor
assets
* array Array of NFT assets
items
NftV2Model object NFT model with basic token information for list views
id
* string Unique identifier (format: chainId:contract:tokenId)
token_id
* string Unique token identifier within the contract
provider
* string (Enum)Data provider source (OPENSEA, RARIBLE, POAP)
OPENSEA
RARIBLE
POAP
name
* string Name of the NFT
chainId
* number Blockchain network identifier
priority
* number Display priority (lower values displayed first)
asset_contract
* any NFT contract information
allOf[0]
AssetContract object NFT contract information including address and token standard
address
* string Contract address on the blockchain
schema_name
* string Token standard (e.g., ERC721, ERC1155)
image_url
* string URL of the NFT image
openseaNextToken
* string next token for get next elements from opensea provider
JSON
Copy
1