Portal Community

getAsset

Returns the current owner of an NFT mint address.

FieldTypeRequiredDescription
minttext✓ YesBase58 address of the NFT's mint account.
clusterselectNoSee 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 FieldMeaning
assetAddressEchoes the requested mint.
standardAlways spl-token in this pass — the token-standard classification this lookup used, not a Metaplex-verified standard (pNFT, Core, etc).
ownerThe wallet address currently holding the single unit of this NFT.
name / uriAlways empty — reserved for a future Metaplex-aware pass. See Roadmap.
Missing mint: Omitting mint returns VAL_MISSING_MINT'mint' is required.