Get Signatures For Asset

Retrieve a list of transaction signatures linked to a compressed asset.

Returns transaction signatures for a given asset, supporting only compressed assets created by the Metaplex Bubblegum program. The easiest way to look up historical transactions for these assets.

Request (POST)
{
    "id": "text",
    "jsonrpc": "2.0",
    "method": "getSignaturesForAsset",
    "params": {
      "id": "FNt6A9Mfnqbwc1tY7uwAguKQ1JcpBrxmhczDgbdJy5AC",
      "page": 1,
      "limit": 100,
      "before": "string",
      "after": "string"
    }
  }
Name
Description

id

The address of associated mint.

owner

The owner address of the tokens.

page

The current pagination page.

limit

Number of results per page.

cursor

Optional pagination cursor.

before

Return results before the cursor.

after

Return results after the cursor.

Last updated

Was this helpful?