Skip to main content
POST
Blockchain - Multiple Token Metadata
  • Batch version of Solana token metadata for up to 100 mint addresses per request.
  • Response is keyed by mint address, which makes it easy to merge into watchlists, portfolios, or discovery pipelines.
  • Each entry may be null if the mint is unknown, invalid, or metadata is unavailable.
  • This endpoint is better than repeated single calls when populating token tables or NFT inventories.
  • Hydrate large Solana token lists with mint and metadata fields in one request.
  • Prepare NFT inventories, token directories, and portfolio tables without serial single-mint lookups.
  • Batch-check authority, mutability, collection, and royalty fields across many mints.
  • Reduce request overhead when building Solana-first explorers or backoffice tools.
  • Send the mint list in the tokens array.
  • Deduplicate mint addresses before the request.
  • Read the returned map by mint key and handle null entries conservatively.
  • Cache the successful mint metadata and refresh it less often than activity data.
  • Chunk large metadata jobs into batches of up to 100 mints.
  • Persist core mint metadata locally so repeated screens do not fan out to the endpoint again.
  • Resolve the off-chain uri asynchronously if you also need extended JSON metadata or images.
  • Solana only.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Body

application/json
tokens
string[]
required

Solana token mint addresses. Maximum 100 tokens.

Required array length: 1 - 100 elements

Response

Successful response

success
boolean
required
data
object
required