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
- Go to NFT Suite → Download Metadata
- Select your collection
- 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
- Click Download
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.