Skip to main content

Documentation Index

Fetch the complete documentation index at: https://apetopia.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Download Metadata exports the on-chain metadata for every NFT in your collection — names, descriptions, trait attributes, image URIs, and any other properties stored on-chain. You get a JSON file per NFT, or a single combined JSON, ready for use in any tool or workflow.

Open in Apetopia →

Go directly to this feature in your dashboard.

When you’d use this

  • Creating a backup of your collection’s metadata
  • Verifying that on-chain metadata matches what you intended
  • Preparing data for analysis or import into other tools
  • Sharing metadata with a developer for a project integration

How to download

  1. Go to NFT Suite → Download Metadata
  2. Select your collection
  3. Choose the export format:
    • One file per NFT — a ZIP of individual JSON files named by token ID
    • Combined JSON — a single array with all NFTs in one file
  4. Click Download

Metadata format

Each NFT’s metadata follows the standard format:
{
  "name": "Collection #0042",
  "description": "...",
  "image": "https://...",
  "attributes": [
    { "trait_type": "Background", "value": "Gold" },
    { "trait_type": "Eyes", "value": "Laser" }
  ]
}
Keep a local copy of your metadata as a backup. If anything ever goes wrong with your on-chain storage, having a local copy makes recovery much easier.