searchAssets RPC Method - Metaplex DAS
Please note that this RPC method requires the Metaplex Digital Asset Standard (DAS) API add-on enabled on your QuickNode endpoint.
Solana Kit includes the ability to customize RPC methods and transports, allowing you to seamlessly integrate QuickNode Marketplace add-ons into your applications. For more information on how to use QuickNode Marketplace add-ons with Solana Kit, check out these guides: How to Use QuickNode Add-ons using Solana Kit (Part 1) and How to Use QuickNode Add-ons using Solana Kit (Part 2)
Parameters
negate
boolean
Loading...
conditionType
string
Loading...
interface
string
Loading...
ownerAddress
string
Loading...
ownerType
string
Loading...
creatorAddress
string
Loading...
creatorVerified
boolean
Loading...
authorityAddress
string
Loading...
grouping
array of arrays
Loading...
delegateAddress
string
Loading...
frozen
boolean
Loading...
supply
integer
Loading...
supplyMint
string
Loading...
compressed
boolean
Loading...
compressible
boolean
Loading...
royaltyTargetType
string
Loading...
royaltyTarget
string
Loading...
royaltyAmount
integer
Loading...
burnt
boolean
Loading...
options
object
Loading...
showFungible
boolean
Loading...
showCollectionMetadata
boolean
Loading...
sortBy
object
Loading...
sortBy
string
Loading...
sortDirection
string
Loading...
limit
integer
Loading...
cursor
string
Loading...
page
integer
Loading...
before
string
Loading...
after
string
Loading...
jsonUri
string
Loading...
Returns
assetList
object
Loading...
total
integer
Loading...
limit
integer
Loading...
page
integer
Loading...
cursor
string
Loading...
items
array of objects
Loading...
asset
object
Loading...
interface
string
Loading...
id
string
Loading...
content
object
Loading...
$schema
string
Loading...
json_uri
string
Loading...
files
array of objects
Loading...
uri
string
Loading...
mime
string
Loading...
quality
object
Loading...
contexts
array of strings
Loading...
metadata
object
Loading...
name
string
Loading...
description
string
Loading...
symbol
string
Loading...
token_standard
string
Loading...
attributes
array of objects
Loading...
value
integer/string
Loading...
trait_type
string
Loading...
links
object
Loading...
external_url
string
Loading...
image
string
Loading...
authorities
array of objects
Loading...
address
string
Loading...
scopes
array of strings
Loading...
compression
object
Loading...
asset_hash
string
Loading...
compressed
boolean
Loading...
creator_hash
string
Loading...
data_hash
string
Loading...
eligible
boolean
Loading...
leaf_id
integer
Loading...
seq
integer
Loading...
tree
string
Loading...
grouping
array of objects
Loading...
group_key
string
Loading...
group_value
string
Loading...
royalty
string
Loading...
basis_points
integer
Loading...
locked
boolean
Loading...
percent
integer
Loading...
primary_sale_happened
boolean
Loading...
royalty_model
string
Loading...
target
string
Loading...
creators
array of objects
Loading...
address
string
Loading...
share
integer
Loading...
verified
boolean
Loading...
ownership
object
Loading...
delegate
string
Loading...
delegated
boolean
Loading...
frozen
boolean
Loading...
owner
string
Loading...
ownership_model
string
Loading...
uses
object
Loading...
remaining
integer
Loading...
total
integer
Loading...
use_method
string
Loading...
supply
object
Loading...
edition_nonce
integer
Loading...
print_current_supply
integer
Loading...
print_max_supply
integer
Loading...
mutable
boolean
Loading...
burnt
boolean
Loading...
mint_extensions
object
Loading...
Request
curl https://docs-demo.solana-mainnet.quiknode.pro/ \ -X POST \ -H "Content-Type: application/json" \ --data '{"jsonrpc": "2.0","id": 1,"method": "searchAssets","params": {"creatorAddress": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "limit": 10}}'
require "uri" require "json" require "net/http" url = URI("https://docs-demo.solana-mainnet.quiknode.pro/") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Post.new(url) request["Content-Type"] = "application/json" request.body = JSON.dump({ "jsonrpc": "2.0", "id": 1, "method": "searchAssets", "params": { "creatorAddress": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "limit": 10 } }) response = https.request(request) puts response.read_body
use reqwest::header; use reqwest::Client; use std::error::Error; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { let mut headers = header::HeaderMap::new(); headers.insert("Content-Type", "application/json".parse().unwrap()); let client = Client::new(); let json_data = r#" { "jsonrpc": "2.0", "id": 1, "method": "searchAssets", "params": { "creatorAddress": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "limit": 10 } }"#; let response = client .post("https://docs-demo.solana-mainnet.quiknode.pro/") .headers(headers) .body(json_data) .send() .await?; let body = response.text().await?; println!("{}", body); Ok(()) }
Response
{ "jsonrpc": "2.0", "result": { "total": 10, "limit": 10, "cursor": "JDfuX7zZvZmRGT1JtR7ugbLqqfvsuNXAanNG3RcteDR7", "items": [ { "interface": "Custom", "id": "JEH7cJxAKdprFG5AvdsY2c4ZqojxLBjFmw19zADV6oK5", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/7045.json", "files": [ { "uri": "https://famousfoxes.com/hd/7045.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Amaranth", "trait_type": "Background" }, { "value": "Hoodie Green", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smile", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Head" }, { "value": "Blank", "trait_type": "Eyes" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #7045", "symbol": "FFF" }, "links": { "image": "https://famousfoxes.com/hd/7045.png", "external_url": "https://famousfoxes.com" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": true, "delegated": true, "delegate": "EyiXmcBXxDV2syys241KeuaQcZkv5ge18r1dBEMNS4Rr", "ownership_model": "single", "owner": "3ZxvgtSZXeDTfZNBq6Awi7xsCLXcP95ZSDHt51SKgypX" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JEEqUNmR1EDmDrwZUL3L49cciBQUP264BrNAkyGS3Zoc", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/5978.json", "files": [ { "uri": "https://famousfoxes.com/hd/5978.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Orange", "trait_type": "Background" }, { "value": "Sweater Light", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smirk", "trait_type": "Mouth" }, { "value": "Sportsband", "trait_type": "Head" }, { "value": "Mutated", "trait_type": "Eyes" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #5978", "symbol": "FFF" }, "links": { "image": "https://famousfoxes.com/hd/5978.png", "external_url": "https://famousfoxes.com" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": true, "delegated": true, "delegate": "55tUYy42sdbzodsC7bicHhePSkgVQwgDerksxtHg19Xk", "ownership_model": "single", "owner": "GbmFH5bg2oGBV6n6xKVAkj3d6xC4W8Kfm7TK876GFVHY" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 254 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JECsxP3MYFV1NEHXtb4MVogQBMQqf17vcVrSyxdo6v7Q", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/3297.json", "files": [ { "uri": "https://famousfoxes.com/hd/3297.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Rose", "trait_type": "Background" }, { "value": "COPE", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Stache", "trait_type": "Mouth" }, { "value": "None", "trait_type": "Head" }, { "value": "Solana", "trait_type": "Eyes" }, { "value": 2, "trait_type": "Outfit Tier" }, { "value": 2, "trait_type": "Head Tier" }, { "value": false, "trait_type": "Tail" }, { "value": "Mjolnir", "trait_type": "Secondary Background" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #3297", "symbol": "FFF" }, "links": { "external_url": "https://famousfoxes.com", "image": "https://famousfoxes.com/hd/3297.png" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": true, "delegated": true, "delegate": "Ef8bBufqpcovuCKJnxCSfeavXWUja5Lw3d8BA53nvRsj", "ownership_model": "single", "owner": "BQBPmgUGinwF6ozaxGYnmKNqmYnMRCp13C1G5DSM3Csr" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": true, "burnt": false }, { "interface": "V1_NFT", "id": "JEBnFYrsKj6J6o7G63nCG69a5nVHCQ6AiXsntM8Er1rU", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://nfts.dialect.to/famous-fox-federation/laugh-cry-metadata.json", "files": [], "metadata": { "name": "Laugh Cry", "symbol": "FFFSTK", "token_standard": "NonFungible" }, "links": {} }, "authorities": [ { "address": "89iERt8AMA3GHmZJEtJdiJSdAFTEYWoHQF9q3MfQcrvE", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": true, "data_hash": "DSGctxtHAt49LUaNfUxpFgTRukaMbmBH2buTAz6fCvRb", "creator_hash": "3a6XZpo5fdf8k1f1EQJeFv7FdHjwrZzbU7HmAsckks3k", "asset_hash": "6edMAR2uRZbJFqy4WnyEH4QrSLGUV4dU7NDoETKUcPDX", "tree": "967PLmeG6ZGxQEEpyBBQy1JbiazyDvuTSgUig6jYyjdw", "seq": 2557, "leaf_id": 2091 }, "grouping": [ { "group_key": "collection", "group_value": "7oeFuWP4ArhSFFYguvnvZFUMz7g3ySruDD2N3YavcQhb" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.025, "basis_points": 250, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "EevH3LPRexR2431NSF6bCpBbPdQ2ViHbM1p84zujiEUs", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": false } ], "ownership": { "frozen": false, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "5eV3fE9ZYNPaYubRHonMr52xUHLE9sFvaXaR9FoS8xcc" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 0 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JDx35oH4ZuTqEL8kJ2VhQtGTq4XpfjyA8PXzgfe8wjPj", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/1890.json", "files": [ { "uri": "https://famousfoxes.com/hd/1890.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Sky", "trait_type": "Background" }, { "value": "Astronaut Light", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smirk", "trait_type": "Mouth" }, { "value": "Backwards Cap Dark", "trait_type": "Head" }, { "value": "Raised", "trait_type": "Eyes" }, { "value": 2, "trait_type": "Outfit Tier" }, { "value": 2, "trait_type": "Head Tier" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #1890", "symbol": "FFF" }, "links": { "image": "https://famousfoxes.com/hd/1890.png", "external_url": "https://famousfoxes.com" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": false, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "UT3aPa45jNqBmcXxE6DS6DvkYsqLLF1bEMhc5QENPfx" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JDtgWAsaLeGjYN2ro6fRGXStpDsqCvURuzhbG72cCNFJ", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/1663.json", "files": [ { "uri": "https://famousfoxes.com/hd/1663.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Sand", "trait_type": "Background" }, { "value": "T-Shirt White", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smirk", "trait_type": "Mouth" }, { "value": "Backwards Cap Blue", "trait_type": "Head" }, { "value": "Thug", "trait_type": "Eyes" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #1663", "symbol": "FFF" }, "links": { "external_url": "https://famousfoxes.com", "image": "https://famousfoxes.com/hd/1663.png" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": false, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "5jf5dRVqqDeik3KDPtg6zmDLpzJifeuXDDt14iMW4onV" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": true, "burnt": false }, { "interface": "V1_NFT", "id": "JDrGuEee3cEemQUaEGf6wAANwY1HnZrvU24rr8jQVfX6", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://nfts.dialect.to/famous-fox-federation/love-metadata.json", "files": [], "metadata": { "name": "Love", "symbol": "FFFSTK", "token_standard": "NonFungible" }, "links": {} }, "authorities": [ { "address": "89iERt8AMA3GHmZJEtJdiJSdAFTEYWoHQF9q3MfQcrvE", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": true, "data_hash": "CYcWXMgy3CyWiM7KzjaPA4j9ceBhBXiediPDHQtPYdYs", "creator_hash": "3a6XZpo5fdf8k1f1EQJeFv7FdHjwrZzbU7HmAsckks3k", "asset_hash": "DK6JpJ5gnvRUGqRCvZW9PRbNYjqq6bBvDPHEb6BUuhY3", "tree": "967PLmeG6ZGxQEEpyBBQy1JbiazyDvuTSgUig6jYyjdw", "seq": 273, "leaf_id": 272 }, "grouping": [ { "group_key": "collection", "group_value": "7oeFuWP4ArhSFFYguvnvZFUMz7g3ySruDD2N3YavcQhb" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.025, "basis_points": 250, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "EevH3LPRexR2431NSF6bCpBbPdQ2ViHbM1p84zujiEUs", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": false } ], "ownership": { "frozen": false, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "5YtGDNcA5xhh6MypeDCoXYJknVF6NDy5FVjrUNZJTJKA" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 0 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JDqk2RQNHUhPLRY5tKKDZydZabWLfUWj9fr6WyfX1gJv", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/7479.json", "files": [ { "uri": "https://famousfoxes.com/hd/7479.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Yellow", "trait_type": "Background" }, { "value": "Turtleneck Blue", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smug", "trait_type": "Mouth" }, { "value": "Headset", "trait_type": "Head" }, { "value": "Shades", "trait_type": "Eyes" }, { "value": 1, "trait_type": "Head Tier" }, { "value": 1, "trait_type": "Outfit Tier" }, { "value": false, "trait_type": "Tail" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #7479", "symbol": "FFF" }, "links": { "image": "https://famousfoxes.com/hd/7479.png", "external_url": "https://famousfoxes.com" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": true, "delegated": true, "delegate": "6ospdQUtuxMtXxMqumFUnuTzeNR3uz22gEXMryMWR6Gh", "ownership_model": "single", "owner": "FffrafFFv3mnC7PbYBddM725bG9MAnwskXLzjrMHKkPS" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 254 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JDnKSVEqwPAxLREv2PBwresFjB4FgRp3kYdwMRXhaLtj", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/1914.json", "files": [ { "uri": "https://famousfoxes.com/hd/1914.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Green", "trait_type": "Background" }, { "value": "Hoodie Green", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smug", "trait_type": "Mouth" }, { "value": "Bucket Hat Green", "trait_type": "Head" }, { "value": "Raised", "trait_type": "Eyes" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #1914", "symbol": "FFF" }, "links": { "external_url": "https://famousfoxes.com", "image": "https://famousfoxes.com/hd/1914.png" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": false, "delegated": false, "delegate": null, "ownership_model": "single", "owner": "F2WhU8f783gLKGutmYjLXGxxUNoc3CG3WB8k1h4nqMSm" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": true, "burnt": false }, { "interface": "Custom", "id": "JDfuX7zZvZmRGT1JtR7ugbLqqfvsuNXAanNG3RcteDR7", "content": { "$schema": "https://schema.metaplex.com/nft1.0.json", "json_uri": "https://famousfoxes.com/metadata/963.json", "files": [ { "uri": "https://famousfoxes.com/hd/963.png", "mime": "image/png" } ], "metadata": { "attributes": [ { "value": "Sand", "trait_type": "Background" }, { "value": "Shirt Flannel Green", "trait_type": "Outfit" }, { "value": "Natural", "trait_type": "Skin" }, { "value": "Smug", "trait_type": "Mouth" }, { "value": "Bucket Hat Green", "trait_type": "Head" }, { "value": "Raised", "trait_type": "Eyes" }, { "value": 1, "trait_type": "Head Tier" }, { "value": 1, "trait_type": "Outfit Tier" } ], "description": "The Famous Fox Federation, an independent organization of the most fabulously famous foxes on the Blockchain.", "name": "Fox #963", "symbol": "FFF" }, "links": { "image": "https://famousfoxes.com/hd/963.png", "external_url": "https://famousfoxes.com" } }, "authorities": [ { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "scopes": [ "full" ] } ], "compression": { "eligible": false, "compressed": false, "data_hash": "", "creator_hash": "", "asset_hash": "", "tree": "", "seq": 0, "leaf_id": 0 }, "grouping": [ { "group_key": "collection", "group_value": "BUjZjAS2vbbb65g7Z1Ca9ZRVYoJscURG5L3AkVvHP9ac" } ], "royalty": { "royalty_model": "creators", "target": null, "percent": 0.042, "basis_points": 420, "primary_sale_happened": true, "locked": false }, "creators": [ { "address": "D3XrkNZz6wx6cofot7Zohsf2KSsu2ArngNk8VqU9cTY3", "share": 0, "verified": true }, { "address": "3pMvTLUA9NzZQd4gi725p89mvND1wRNQM3C8XEv1hTdA", "share": 100, "verified": true } ], "ownership": { "frozen": true, "delegated": true, "delegate": "GUruvq96THGCtNrMqHy2BH84AC2CG2QoeefxtYc9dRFs", "ownership_model": "single", "owner": "CHBELQKe6iP1mV6AnJo4tFGF5WiRe9hnQ6oK5fbbPGeJ" }, "supply": { "print_max_supply": 0, "print_current_supply": 0, "edition_nonce": 255 }, "mutable": true, "burnt": false } ] }, "id": 1 }
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free