Skip to main content
GET
Blockchain - Token Metadata
  • Returns mint-level metadata and Metaplex metadata for one Solana token mint.
  • Useful for both fungible tokens and NFTs; is_nft and token_standard help separate the two.
  • mint_authority and freeze_authority may be null when those controls have been removed.
  • uri points to off-chain metadata and should be treated as external content that can change or disappear.
  • Fetch Solana mint metadata for wallets, galleries, explorers, and internal tooling.
  • Check token authorities, mutability, and royalty fields before listing or supporting an asset.
  • Distinguish fungible tokens, NFTs, and collection-linked assets from one endpoint.
  • Hydrate token cards and token detail pages with on-chain metadata before reading off-chain JSON.
  • Pass the mint address in token.
  • Read decimals, supply, and is_initialized for mint-level basics.
  • Use update_authority, is_mutable, and collection when you need NFT or creator checks.
  • Fetch and cache the off-chain uri separately if your application needs artwork or extended attributes.
  • Cache this metadata more aggressively than price or trade data.
  • Treat off-chain URI content as untrusted input and validate it before display.
  • Combine this endpoint with account detail or token-account queries when you need both metadata and holdings.
  • Solana only.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Query Parameters

token
string
required

Solana token mint address.

Example:

"2wjBpgBd215Wp5s9hxJ8wG8K7hoxEhGFfyp55NCh8Fmt"

Response

Successful response

success
boolean
required
data
object
required