Web3 Dictionary Logo
Web3 Dictionary
Contribute

Categories

AllBlockchainDappsDAOsDeFiNFTsRegulationSecuritySmart ContractsTokenomicsWalletsWeb3 GamingOthers
  1. Web3 Dictionary
  2. NFTs
  3. Token URI
NFTs

Token URI

A reference (URL or IPFS address) pointing to metadata describing an NFT's properties.

Last Updated

2026-03-29

Related Concepts

MetadataNFTERC-721IPFS
Web3-Explorer Logo

Launch Web3 Apps

AD

Build secure dApps, tokens, DeFi & DAOs with a team focused on mainnet-ready delivery.

Explore Web3 Solutions

What is Token URI?

A token URI is a string typically a URL or IPFS address that points to a JSON file containing an NFT's metadata: its name, description, image, and traits. It is the link between an on-chain token ID and its human-readable content.

How does Token URI work?

  1. When an NFT is minted, the contract stores a URI associated with its token ID.
  2. Marketplaces and wallets query the contract for the URI, then fetch the metadata JSON.
  3. IPFS URIs are immutable the same hash always returns the same content.
  4. Centralized server URIs can be updated but risk going offline permanently.

Why does Token URI matter?

Without a token URI, an NFT is just a number. The URI is what gives it a name, image, and traits everything users actually see and value.

Key features of Token URI

  • Links on-chain token ID to off-chain metadata
  • IPFS URIs are immutable and decentralized
  • Follows ERC-721 metadata JSON standards
  • Marketplaces depend on it to display NFTs correctly

Examples of Token URI

A Pudgy Penguin NFT uses an IPFS URI pointing to immutable metadata. Art Blocks uses a URI that dynamically generates SVG art on-chain.

A project that uses centralized server URIs risks losing all metadata if the server shuts down.

External References

  • NFT Metadata Standards
  • ERC-721 Standard