Private Data

If you've minted NFTs using our Fortress Mint product, then you also had the ability to add private data to those NFTs. Our Wallet APIs allow you to surface that private data for use in your application.

GET /api/wallet/v1/wallets/{walletId}/tokens/{tokenId}/private-data

//Sample Response Schema

{
  "data": [
    {
      "files": [
        {
          "extension": "string",
          "description": "string",
          "name": "string",
          "title": "string",
          "url": "string"
        }
      ],
      "privateMessage": "string"
    }
  ],
  "meta": {
    "pageCount": 0,
    "resourceCount": 0
  }
}

📘

Private Data

Remember, private data is only available when using our Fortress Mint APIs. Combining the the mint and wallet APIs is great for allowing additional functionality that is usually not offered with other products.