DAS Methods

Get Signatures For Asset

Search and return a list of signatures associated with a Compressed NFT Digital Asset (cNFT).

Body Params
stringrequired
Public key of the asset
number
The page to return
number
Amount of signatures to return. Default is 1000. Max is 1000
string
Return results before signature with this ID
string
Return results after signature with this ID
Language
Javascript Request Example
const url = "https://aura-mainnet.metaplex.com";

fetch(url, {
    method: "POST",
    headers: {"Content-Type": "application/json"},
    body: JSON.stringify({
      "jsonrpc": "2.0",
      "id": 1,
      "method": "getSignaturesForAsset",
      "params": {}
    })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));

Previous
Get Assets By Group