FortiBlox LogoFortiBlox Docs
NexusEnhanced API

NFT Metadata

Resolve NFT metadata including images, attributes, and collections

NFT Metadata

Get comprehensive NFT metadata from on-chain and off-chain sources.

GET /v0/nft/:mint

Get NFT metadata for a specific mint address.

Request

curl "https://nexus.fortiblox.com/api/v1/v0/nft/MINT_ADDRESS?api-key=$FORTIBLOX_API_KEY"

Response

{
  "success": true,
  "data": {
    "mint": "...",
    "name": "Cool NFT #123",
    "symbol": "COOL",
    "image": "https://...",
    "attributes": [
      {"trait_type": "Background", "value": "Blue"},
      {"trait_type": "Rarity", "value": "Rare"}
    ],
    "collection": {
      "name": "Cool Collection",
      "family": "Cool"
    },
    "creators": [...]
  }
}

GET /v0/nfts/:address

Get all NFTs owned by a wallet address.

Request

curl "https://nexus.fortiblox.com/api/v1/v0/nfts/9B5XszUGdMaxCZ7uSQhPzdks5ZQSmWxrmzCSvtJ6Ns6g?api-key=$FORTIBLOX_API_KEY"

Response

{
  "success": true,
  "data": {
    "address": "9B5XszUGdMaxCZ7uSQhPzdks5ZQSmWxrmzCSvtJ6Ns6g",
    "nfts": [...],
    "total_nfts": 15
  }
}