DAS Methods
Get Asset
Fetch an NFT Digital Asset from the Solana blockchain including NFTs, pNFTs, cNFTs.
Body Params
stringrequired
Public key of the asset
Javascript Request Example
const url = "https://aura-mainnet.metaplex.com";
fetch(url, {
method: "POST",
headers: "Content-Type": "application/json",
body: {
"jsonrpc": "2.0",
"id": 1,
"method": "getAsset",
"params": {}
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));