get_nft_instance_info
Retrieve detailed information about specific NFT instances by providing token address and instance ID for blockchain analysis and data verification.
Instructions
Get NFT instance information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | The token address | |
| instance_id | Yes | The instance ID |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"description": "The instance ID",
"type": "string"
},
"token": {
"description": "The token address",
"type": "string"
}
},
"required": [
"token",
"instance_id"
],
"type": "object"
}