AI art NFT metadata builder
Minting AI artwork as an NFT needs a metadata JSON file that marketplaces
read to display the piece. The de-facto standard is the ERC-721 metadata
schema — name, description, image, and an attributes array. This
builder collects your fields and AI generation details and outputs a clean,
compliant file ready to pin to IPFS.
How it works
You fill in the core fields and any generation attributes — model, seed, style
and a prompt hash. The tool assembles them into a valid ERC-721 object, encoding
each attribute as a { trait_type, value } pair so OpenSea and similar
marketplaces can build filters and rarity tables. The seed is marked as a
numeric display type. The output is pure, parseable JSON with no trailing
commas or invalid fields.
Tips and notes
- Pin to IPFS for permanence. Use an
ipfs://URI for the image so the art outlives any single server. - Store a prompt hash, reveal later. Keep the exact prompt private while still being able to prove provenance.
- Use numeric display types for the seed and any edition number so marketplaces sort them correctly.
- Validate before minting. Paste the output into a JSON validator — a single malformed character can make a marketplace fail to render your token.