DAS Methods
Get Asset Proof
Fetch the proof of a Compressed NFT Digital Asset (cNFT) with Aura DAS API.
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": "getAssetProof",
"params": {}
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));