Skip to main content

Metadata

Parsed NFT metadata following common standards (ERC-721 metadata, OpenSea, etc.). Contains structured data extracted from the token's metadata URI.

Schema Definition

type Metadata {
uri: String
name: String
description: String
image: String
attributes: [Attribute!]
externalUrl: String
animationUrl: String
youtubeUrl: String
raw: JSON
size: Int
updatedAt: Timestamp!
}

Fields

FieldTypeDescription
uri
String scalar
Original metadata URI from the token contract (may be IPFS, Arweave, HTTPS, or data URI).
name
String scalar
Human-readable name of the NFT.
description
String scalar
Detailed description of the NFT.
image
String scalar
Primary image URL for the NFT. May be IPFS, Arweave, or HTTPS.
attributes
[Attribute!] list object
List of traits and attributes for rarity and filtering.
externalUrl
String scalar
Link to an external website with more information about the NFT.
animationUrl
String scalar
URL for animated content (GIF, video, etc.) associated with the NFT.
youtubeUrl
String scalar
YouTube video URL associated with the NFT.
raw
JSON scalar
Original unparsed metadata as JSON for accessing non-standard fields.
size
Int scalar
Size of the raw metadata in bytes.
updatedAt
Timestamp! non-null scalar
Timestamp when this metadata was last fetched and parsed.

Member Of

MultiHolderNFT object ● NFT interface ● OwnedNFT object ● SingleHolderNFT object