Get NFT Editions

Get all printable editions for a master edition NFT mint.

Request (POST)
{
    "id": "text",
    "jsonrpc": "2.0",
    "method": "getNftEditions",
    "params": {
      "mint": "Ey2Qb8kLctbchQsMnhZs5DjY32To2QtPuXNwWvk4NosL",
      "page": 1,
      "limit": 100
    }
  }

Paramaters

Name
Description

mint

The mint address of the master edition.

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.

Response

{
  "total": 1,
  "limit": 1,
  "page": 1,
  "master_edition_address": "8SHfqzJYABeGfiG1apwiEYt6TvfGQiL1pdwEjvTKsyiZ",
  "supply": 61,
  "max_supply": 69,
  "editions": [
    {
      "mint": "GJvFDcBWf6aDncd1TBzx2ou1rgLFYaMBdbYLBa9oTAEw",
      "edition_address": "text",
      "edition": 1
    }
  ]
}

Last updated

Was this helpful?