NFT Operations
resource: nft — mint ownership lookup. No credential required.
getAsset
Returns the current owner of an NFT mint address.
| Field | Type | Required | Description |
|---|---|---|---|
mint | text | ✓ Yes | Base58 address of the NFT's mint account. |
cluster | select | No | See Clusters. |
Example response:
{
"assetAddress": "Mnt1...ghi",
"standard": "spl-token",
"owner": "Own4...jkl",
"name": "",
"uri": ""
}
Scope limit: no Metaplex metadata. This operation resolves the current owner
correctly by reading the mint's token-account holder on-chain, but it does not
decode Metaplex metadata —
name and uri are always returned empty. No
maintained .NET Metaplex library exists for either the Token Metadata or Core (MPL Core) standard at
the time this operation was built. Fetching human-readable name/image data currently requires an
external Metaplex-aware indexer (e.g. Helius DAS API, a dedicated node service) outside this node.
| Response Field | Meaning |
|---|---|
assetAddress | Echoes the requested mint. |
standard | Always spl-token in this pass — the token-standard classification this lookup used, not a Metaplex-verified standard (pNFT, Core, etc). |
owner | The wallet address currently holding the single unit of this NFT. |
name / uri | Always empty — reserved for a future Metaplex-aware pass. See Roadmap. |
Missing mint: Omitting
mint returns VAL_MISSING_MINT — 'mint' is required.