Skip to main content

2 posts tagged with "NFT"

View All Tags

· One min read

Changelog: Solana NFT Media Items Update

Release Date: April 24, 2025

We're excited to announce that NFT Media Items are now available for Solana NFTs! This feature brings the same image preview capabilities that EVM users have enjoyed to our Solana API endpoints.

What's New?

  • NFT Media Items for Solana: Get image previews and media information for Solana NFTs
  • Multiple Resolution Options: Each NFT includes low (100x100), medium (250x250), and high (500x500) resolution images
  • Processing Status: Track the status of media processing for each NFT
  • Media Type Information: Get mimetype and other media metadata
  • Original Media URLs: Access the original media URLs for all your NFTs

Endpoints with NFT Media Support:

  • getNFTMetadata
  • getNFTs
  • getPortfolio

Media Response Format:

Each supported endpoint now returns a media object in the response with the following structure:

"media": {
"status": "success",
"updatedAt": "2025-04-21T16:34:37.665Z",
"mimetype": "image/png",
"parent_hash": "0xd74c7c0ec9fdc611cb86317d7505be611a38feeb2abfea866bb9b695c6ac358e",
"media_collection": {
"low": {
"height": 100,
"width": 100,
"url": "https://nft-preview-media.s3.us-east-1.amazonaws.com/evm/0x1/0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb/0x22429fbf9d7fccfdcd86bb1f4a8551127c408c920b392e220b43b4b89a3e9b4e/low.png"
},
"medium": {
"height": 250,
"width": 250,
"url": "https://nft-preview-media.s3.us-east-1.amazonaws.com/evm/0x1/0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb/0x22429fbf9d7fccfdcd86bb1f4a8551127c408c920b392e220b43b4b89a3e9b4e/medium.png"
},
"high": {
"height": 500,
"width": 500,
"url": "https://nft-preview-media.s3.us-east-1.amazonaws.com/evm/0x1/0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb/0x22429fbf9d7fccfdcd86bb1f4a8551127c408c920b392e220b43b4b89a3e9b4e/high.png"
}
},
"original_media_url": "https://www.larvalabs.com/cryptopunks/cryptopunk001.png"
}

Key Benefits:

  • Multiple Resolution Options: Access low, medium, and high-resolution versions of NFT images
  • Enhanced NFT Display: Show rich media previews in your NFT applications
  • Media Format Information: Get mimetype and detailed media metadata
  • Consistent Experience: Same media features across EVM and Solana chains
  • Original Media Access: Direct access to original media URLs

Documentation:

For more information on how to use these endpoints with NFT media, please refer to our documentation:

· 2 min read

Changelog: Solana NFT Metadata API Update

Release Date: April 5, 2025

We're excited to announce significant improvements to our Solana NFT Metadata API! This update enhances the response structure and expands the metadata information returned when querying NFT details on Solana.

What's Updated?

NameDescriptionAPI Reference
Get NFT MetadataEnhanced NFT metadata retrieval with expanded response formatMethod Documentation

Key Improvements:

  • Expanded Response Format:

    • Added comprehensive NFT attributes section with trait types and values
    • Included detailed contract information with token type and symbol
    • Added collection details including external links and verification status
    • Incorporated creator information with share percentages and verification status
  • Enhanced Metadata Structure:

    • Standardized image URL references across different metadata sources
    • Added separate fields for original content URLs and external references
    • Improved metadata origination tracking with explicit source URLs
    • Added token minting and creation timestamps
  • New Properties Section:

    • Added file information with content type and URI references
    • Included category classification for improved filtering
    • Creator attribution with share percentages
    • Additional properties specific to NFT collections

Response Format Changes:

The API now returns a significantly more comprehensive response that includes:

  • Before: Basic token information with limited metadata

    • Mint address, name, symbol
    • Simple metadata URL reference
    • Limited seller fee information
    • Basic mintable status
  • After: Detailed NFT information with complete metadata

    • Complete NFT address and identification details
    • Comprehensive description and image references
    • Detailed attribute listing with trait types and values
    • Contract information with token standards
    • Collection association and verification
    • Creator details with share percentages
    • File properties and category information
    • Creation timestamps and transaction details

Example Use Cases:

  • NFT Marketplaces: Display richer NFT details including traits and creator information
  • Collection Analytics: Better analyze NFT collections with improved metadata consistency
  • Creator Attribution: Properly credit and compensate NFT creators with verified share information
  • Enhanced Filtering: Build more powerful search and filtering using the expanded attributes data

Breaking Changes:

  • Response format now follows a more structured hierarchy with nested objects
  • Some field names have been standardized for consistency
  • For backward compatibility, applications should be updated to handle both response formats