NFT metadata models

NFT metadata models serve as a foundation for recording and organizing detailed information about NFTs, enabling participants in the NFT ecosystem to understand and engage with these unique digital assets effectively.

Footprint provides the following 3 tables to collect information about collections, items(NFT)within collections, and attributes of items.

  1. nft_collection_info Live
  2. nft_infoLive
  3. nft_token_attributesLive

nft_collection_info

fieldfield_typedescription
chainstringBlockchain name
collection_namestringNFT collection name
collection_slugstringUnique identifier for the collection within Footprint
contract_addressstringCollection contract address
collection_typearrayCollection type
protocol_slugstringUnique identifier for the protocol within Footprint
logostringNFT collection logo
standardstringContract standard (erc1155/erc721/erc20)
total_supplyintegerThe amount of NFTs that have already been created. If undefined then -1
symbolstringNFT collection symbol
discord_urlstringThe Discord invite link of the NFT collection
medium_usernamestringThe Medium username of the NFT collection
instagram_usernamestringThe instagram username of nft collection
twitter_usernamestringThe Twitter username of the NFT collection
telegram_urlstringThe telegram invite link of nft collection
website_urlstringThe website of the NFT collection
descriptionstringNFT collection description

nft_info

fieldfield_typedescription
chainstringBlockchain name
collection_contract_addressstringCollection contract address
nft_token_idstringToken id of the NFT collection (nft mint account in Solana)
collection_slugstringUnique identifier for the collection within Footprint
collection_namestringNFT collection name
token_namestringNFT token name
descriptionstringNFT description
image_urlstringImage URL
mint_transaction_hashstringTransaction hash of mint NFT transaction
mint_block_timestamptimestampBlock timestamp of mint NFT transaction
mint_addressstringThe wallet address of mint NFT
metadata_uristringMetadata URI
metadatastringOff chain metadata
internet_mime_typestringThe format of NFT
animation_urlstringAnimation URL

nft_token_attributes

fieldfield_typedescription
chainstringBlockchain name
collection_contract_addressstringCollection contract address
nft_token_idstringToken id of the NFT collection
collection_slugstringUnique identifier for the collection within Footprint
attribute_keystringThe key of attribute
attribute_valuestringThe type of attribute value
attribute_typestringThe value of attribute

Tips

  1. chain + contract_address collection_slug are the uniqe keys to join tables to query
  2. Check the ralationship between collection and protocol viaprotocol_slug

Footprint API

Get above data from Footprint REST API:

REST API endpointdescription
getNFTCollectionMetadataReturns the basic information of a given NFT collection.
getNFTTokenMetadataReturns the NFT token basic information of a given NFT collection.
getNFTAttributesReturns the NFT attributes of a given NFT collection.

Check the following dataset while you’re using SQL API to access:

  1. nft_collection_info
  2. nft_info
  3. nft_token_attributes

📘

More API endpoints?

Feel free to contact us in Foorpint discord click here.

Data sample

{
  "message": "success",
  "code": 0,
  "data": [
    {
      "chain": "Ethereum",
      "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "collection_slug": "bored-ape-yacht-club",
      "standard": "ERC721",
      "total_supply": 10000,
      "twitter_username": "",
      "created_at": "2022-07-28 00:00:00.000 UTC",
      "description": "The Bored Ape Yacht Club is a collection of 10,000 unique Bored Ape NFTs unique digital collectibles living on the Ethereum blockchain. Your Bored Ape doubles as your Yacht Club membership card, and grants access to members-only benefits, the first of which is access to THE BATHROOM, a collaborative graffiti board. Future areas and perks can be unlocked by the community through roadmap activation. Visit www.BoredApeYachtClub.com for more details.",
      "discord_url": "",
      "medium_username": "",
      "updated_at": "2023-08-25 07:21:54.000 UTC",
      "website_url": "https://boredapeyachtclub.com/",
      "telegram_url": "",
      "logo": "https://footprint-imgs.oss-us-east-1.aliyuncs.com/logo_images/bored-ape-yacht-club.png",
      "collection_created_at": "2021-04-22 03:03:00.000 UTC",
      "instagram_username": "",
      "collection_name": "BoredApeYachtClub",
      "symbol": "BAYC"
    }
  ]
}
{
  "message": "success",
  "code": 0,
  "data": [
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1036",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1036",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/n8XhqopTkwX6ngjRiFPkgd6ujA3_KC1aHi4WR4Tb6mPEyTRAMDOmwUVcvvfGVdQ8Hz3tInvFI71uCJWg73xcLp7D3Qq4irwCojw4nWQ",
      "mint_transaction_hash": "0x15a0bd6ec5f8be1c55b25d65d5aca0f330cc5e9232eb800d3ffa8dfd91aa7a25",
      "mint_block_timestamp": "2021-05-01 03:33:18.000 UTC",
      "mint_address": "0xb9f5039273a63275d2f15e3c970bdbfcf47d0a5f",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1036",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Bubblegum\", \"display_type\": null, \"max_value\": null, \"trait_count\": 119, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Halo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 324, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1266",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1266",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/jxmQj500dZB1Fau_N4j1jIzdglp4dSI7VEQvJ6QLb67AvlP1cLMUJtb0at8M29ipNsx2CZRucXSCCsD-oz6GiCXgZFUIj0wRe6UI-TU",
      "mint_transaction_hash": "0xf7ae6fd2d5347546b8a537bd2e1a89bcb383b107401fd5ba9b234cd507e8beda",
      "mint_block_timestamp": "2021-05-01 04:54:02.000 UTC",
      "mint_address": "0x35f0686c63f50707ea3b5bace186938e4e19f03a",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1266",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Prussian Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 130, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1295",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1295",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/VTAvqgRPzBhHC3Cg7QzqL3l1ToeJowKZwSdeLHliDcLb8I6C4HKKDhoq9V9aIE5NvFMll2wFyi3uhmq5vE3vNtmz3nKqbobUX2Bg",
      "mint_transaction_hash": "0xd715b93be4ea0f3be64ef5b707199e5833f975b361fa820e94a9a28e0f176ad1",
      "mint_block_timestamp": "2021-05-01 04:58:24.000 UTC",
      "mint_address": "0xe0da8ed5b7b775b5fdf285131646fe2f54ef0005",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1295",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 474, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Service\", \"display_type\": null, \"max_value\": null, \"trait_count\": 142, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1454",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1454",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/Fmn99MMHPj0N86a9jK8RDD3AKgn7JQLlyuKFQRehZD6nxwvIuPR1HJsIvn0wy1V9bSqH-F81CKfd5z5yxqVbWmbSnL1qdgkd7AF2oQ",
      "mint_transaction_hash": "0x4a663c2bdcec2fad7dbaf5799c540a83d1ed7a77d42ea0a141204ba520424789",
      "mint_block_timestamp": "2021-05-01 05:43:35.000 UTC",
      "mint_address": "0x442dccee68425828c106a3662014b4f131e3bd9b",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1454",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 474, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Pipe\", \"display_type\": null, \"max_value\": null, \"trait_count\": 132, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Hip Hop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 128, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Halo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 324, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1675",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1675",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/kuvMvk363oOu4MgxhQvI3I-bHsJGEd50hWfftL0-BQDTQwwlgUtrDJ7aijvU3tqsEvEXMIyBD17Uejg94bQI379mJMn8ZmfnheorVQ",
      "mint_transaction_hash": "0x83589c5b3c5411ed5b0d23e5fce43682e1c371fbcd16f5aac14287f7ddad14d5",
      "mint_block_timestamp": "2021-05-01 06:16:29.000 UTC",
      "mint_address": "0x357931791284f40765b462aa7ad217ebf82920cb",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1675",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Spinner Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 181, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1810",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1810",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/jRHovmHbH_phplHKWN1aYBoBYQspBCJmPu0drqvlVpKt9QxTA343JSKw6ff2f5zGNRchMhDlKKAITquZn1UbxA1vKaFgh4sJtHYYSw",
      "mint_transaction_hash": "0xde16f541bc841358bd5022e290b949e6c04ddb31d2b9ff8f71ccf0468c944e4c",
      "mint_block_timestamp": "2021-05-01 06:26:05.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1810",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Eyepatch\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Black Holes T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 205, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Jovial\", \"display_type\": null, \"max_value\": null, \"trait_count\": 296, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 474, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1893",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1893",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/qDonq73aYafk-TN2ooSJ1v-3vUIUnUaJir9ovbEbpvK7fh1148aE4zcV_9FRQKJUr1EJBb6sAbe4wREqzla2VDx_PCsqVvD6kMR2",
      "mint_transaction_hash": "0xe2b37d19decb091707796b53f1d521a1132f28103e85e2fde1915827c38e5229",
      "mint_block_timestamp": "2021-05-01 06:28:33.000 UTC",
      "mint_address": "0x5079ac0ec3848744b48a5ed37216620c03619c01",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1893",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Eyepatch\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Sushi Chef Headband\", \"display_type\": null, \"max_value\": null, \"trait_count\": 187, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Rainbow Suspenders\", \"display_type\": null, \"max_value\": null, \"trait_count\": 135, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Pipe\", \"display_type\": null, \"max_value\": null, \"trait_count\": 132, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1916",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1916",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/-xt0P80m8m92JHFr3ty5lM5KvQknd50dWMdslKIxJJ9jl-Lf6A_NJNxLz2IAoCb2AdjOOIWYtDrWxr8rVbT8phW4_6IBEM4XXJ7lDMM",
      "mint_transaction_hash": "0xe5187749087ed76bbe72ad39f06bff7c08f4dae52c0b723b8544d158b1498210",
      "mint_block_timestamp": "2021-05-01 06:31:05.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1916",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme  ooo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 255, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Short Mohawk\", \"display_type\": null, \"max_value\": null, \"trait_count\": 318, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 882, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tanktop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Crazy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 407, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2451",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2451",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/iW5KRDMlD7DVqmw3ZuI-9ROtu3xCRXgXQNVL9Z3Vk5CUBbSGDhs7YsyyBufrYkEPT-VAnTzpin1XMEIos2drh8eJyXjG0YOtPxRf4A",
      "mint_transaction_hash": "0x34370c3aaa94dde44769a2e4fbc2d583ad11acc2c3a6aee16590d3edca549851",
      "mint_block_timestamp": "2021-05-01 06:55:06.000 UTC",
      "mint_address": "0x35937462a74d3c64b173a755a40c916e912a8eb5",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2451",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Grin Gold Grill\", \"display_type\": null, \"max_value\": null, \"trait_count\": 91, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"S&m Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Cheetah\", \"display_type\": null, \"max_value\": null, \"trait_count\": 406, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Guayabera\", \"display_type\": null, \"max_value\": null, \"trait_count\": 232, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sunglasses\", \"display_type\": null, \"max_value\": null, \"trait_count\": 352, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2466",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2466",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/LdeUvS4Bt0bayOSeGQHF0nh4vLx-vkhrmY_Ku12KRJ0owipSf463oV9EvguyXuBS30W5wpmPlcXFsfu9AoHu1pCitVwk4gkanR8pAw",
      "mint_transaction_hash": "0xb49c504fd9e7ebbb54bdd946cf8ba0a6d1bdf4662924bbae6de94d77e937d249",
      "mint_block_timestamp": "2021-05-01 06:55:27.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2466",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Noise\", \"display_type\": null, \"max_value\": null, \"trait_count\": 155, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bayc T Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 882, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "25",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #25",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/EFiH8BXY2K3_uevJk2_qFCPaCo5NsyhZmNwvP01W7EjisWB-amb_2yHVVjqbRNCUsgXbO4VdHRzqK0e_1cab3r-kbalRUgxCswqZzw",
      "mint_transaction_hash": "0xcfb197f62ec5c7f0e71a11ec0c4a0e394a3aa41db5386e85526f86c84b3f2796",
      "mint_block_timestamp": "2021-04-22 23:13:40.000 UTC",
      "mint_address": "0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/25",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Guayabera\", \"display_type\": null, \"max_value\": null, \"trait_count\": 232, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2815",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2815",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/rhtU2-SYlGptvF9jeyNuANX7BvaY49hQj2hkds7rZAPHV0z1LJpeuRDpJ9GuzcGL9lZ5jsMUH1yz1zMluRU7GoN98ehY09cCW_aR",
      "mint_transaction_hash": "0x3f24d2c5fb7522000d701a4b31494a7310ea900a9bc9c8619d905ed74d21d008",
      "mint_block_timestamp": "2021-05-01 07:03:46.000 UTC",
      "mint_address": "0xee402489d83e2b22d496910f8c810d35a3ad7b25",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2815",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Rage\", \"display_type\": null, \"max_value\": null, \"trait_count\": 266, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3023",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3023",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/SbmuhvKUnMnibie1R-_NpLSgdJszpbZGeDRUXAR-cHxOpjjxzxIs_Trgc5Tx31gPhuPtCRdtUjj-1Thypg-d4DuvaIn9xmODpOuj",
      "mint_transaction_hash": "0xfb5f77e5192c75ba527ea935dec033d0bcd56a4c427e69f6f59fe1b018d54ef6",
      "mint_block_timestamp": "2021-05-01 07:12:39.000 UTC",
      "mint_address": "0x8b0c8c18993a31f57e60d81761f532ef14633153",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3023",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Sleeveless T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Stuntman Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 157, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3195",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3195",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/IDPyVA_HdEQFLCIOQ-JDUrV74eIJ1nXcGtPYt9bIYGIBLCUOAuxE4Bgfkqo23W9P9bK3_ql3HeWmD4fcsmsA-uZoBC92w4Jv6g53Jg",
      "mint_transaction_hash": "0xddc32e8ef8584b528510e766155a48ae9782fd92b0d73bc2625b3acbb95e42ec",
      "mint_block_timestamp": "2021-05-01 07:19:46.000 UTC",
      "mint_address": "0x9511b898bb2bf3def48b351a1c116d90d24c5aeb",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3195",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Heart\", \"display_type\": null, \"max_value\": null, \"trait_count\": 394, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Irish Boho\", \"display_type\": null, \"max_value\": null, \"trait_count\": 225, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Dumbfounded\", \"display_type\": null, \"max_value\": null, \"trait_count\": 505, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tuxedo Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 490, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3243",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3243",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/H8pDULGqkEapz37qUUi4ZDr9Z3BGWRl17QT7BerZG64cWPstd79_cbSI6B9VeIpHSUcuNnonhL2KHw6RgHXpBGEtNtZ2WbbuH3JsRw",
      "mint_transaction_hash": "0x56a272002e15b486f66a1975a0d62bb8d76d6eed11b556df0cc708d67d24b36f",
      "mint_block_timestamp": "2021-05-01 07:20:49.000 UTC",
      "mint_address": "0xddeaec88e4a183f5acc7d7cfd6f69e300bb6d455",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3243",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Bandolier\", \"display_type\": null, \"max_value\": null, \"trait_count\": 163, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 308, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Bubblegum\", \"display_type\": null, \"max_value\": null, \"trait_count\": 65, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3465",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3465",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/rclf7EF0xtdMWbzjGZ1EXOjOz5d89DLZqmaswX8BozM0ogI7D__UO4QE5FTFSl1PCq_Rw0BWpnAys_p1hQ38aHeUjlxRJ5XwYyGxag",
      "mint_transaction_hash": "0x05c923aa0eb3a475191d9b724bbe970ddded0e90ed9dca0ad49c62f14d41ffb9",
      "mint_block_timestamp": "2021-05-01 07:23:22.000 UTC",
      "mint_address": "0x721931508df2764fd4f70c53da646cb8aed16ace",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3465",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Seaman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 420, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Rage\", \"display_type\": null, \"max_value\": null, \"trait_count\": 266, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Smoking Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 221, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Cross\", \"display_type\": null, \"max_value\": null, \"trait_count\": 149, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3989",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3989",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/UIXWYx_jEcyHKohU2yHJZsSAdg7BSKXuevvIUCKAZyGNBulXyLpnQIWMA49cjs_GK6Jmt_9jqed-oBZlvwCguob8niDXgBxd0xKQeQ",
      "mint_transaction_hash": "0x77d2e3c974b218850132edc5838bbae59d8a4b1f205e2b973c04ce92de9ab3ca",
      "mint_block_timestamp": "2021-05-01 07:29:05.000 UTC",
      "mint_address": "0x3889a7996ef845fe35105b3ef8b0182fd3c253d6",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3989",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Cream\", \"display_type\": null, \"max_value\": null, \"trait_count\": 636, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Hypnotized\", \"display_type\": null, \"max_value\": null, \"trait_count\": 220, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Hawaiian\", \"display_type\": null, \"max_value\": null, \"trait_count\": 283, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Sea Captain's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 304, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4187",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4187",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/FG7-cb_OUhoFh1-2DG6LRg98hcWKcaB87o_P1GkVP8gzsdC5nlGsIcHBMA0rfBkvErrsyWGwNkRnVKFJ5Ihciy8KhOUoXgUGXcQ9",
      "mint_transaction_hash": "0xde25396d4473e8b6ad35fee1ada3dd7302a6fe006dbde342dd97639741474b29",
      "mint_block_timestamp": "2021-05-01 07:32:49.000 UTC",
      "mint_address": "0xdcae87821fa6caea05dbc2811126f4bc7ff73bd1",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4187",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dmt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Bubblegum\", \"display_type\": null, \"max_value\": null, \"trait_count\": 65, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Faux Hawk\", \"display_type\": null, \"max_value\": null, \"trait_count\": 136, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Navy Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 334, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4315",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4315",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/yRrTMzMzIPiBXGHxmKUEqupd83JM-6T1nM9dvxUlsWpLaIywZFrBX0brPwxOmnu_5Sk0cqg4eovvFgZQT0yWcNBCOc3SrFRdQhtikjI",
      "mint_transaction_hash": "0xcd6b82279d624189adcdf8c97c846c7253dd0576d2e31f7f974aee0033d61e11",
      "mint_block_timestamp": "2021-05-01 07:34:05.000 UTC",
      "mint_address": "0x721931508df2764fd4f70c53da646cb8aed16ace",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4315",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Prison Jumpsuit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dark Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1352, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Tongue Out\", \"display_type\": null, \"max_value\": null, \"trait_count\": 202, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4785",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4785",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/z7yGbJmUO9qorb1oznRHZHpkaMFy1dzXSLOXHq7oaasa1A1duOaWHeZiszvjjm9-H5L_Nu205-JnNkOfdk_jbXI0zuZ0sH9gm4pw",
      "mint_transaction_hash": "0x962f70c6ea5cc5caa1e6792d90d91ce92a114a3bb8b5ab7115e2d65302fd4b08",
      "mint_block_timestamp": "2021-05-01 07:39:24.000 UTC",
      "mint_address": "0x3e17258a44f938db9803c18c3c762653f5a23e54",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4785",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme Oh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 237, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Prison Jumpsuit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4881",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4881",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/dxiKvdX9JUEIA43FxO4yj_duGsru4m_hoVh2fiZubXCLR8KCOjHSzDavsE4ehfpbl3WUgeA8J1ZOEhyWdIxf359XBA2Jf47pLlVdgw",
      "mint_transaction_hash": "0x2e9c09dad8f92ae76f1120c5c6a387e54656ecc389f788795ed13e625197a972",
      "mint_block_timestamp": "2021-05-01 07:41:16.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4881",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Wool Turtleneck\", \"display_type\": null, \"max_value\": null, \"trait_count\": 240, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme  ooo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 255, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Cowboy Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 354, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5149",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "",
      "description": "",
      "image_url": "https://lh3.googleusercontent.com/rhMy-A1ZvnUfgV6fuJ8ClD4EuawwPuTaAXjdR4jauTQHZKSd_edkvocZs3j2X86t2vCD7GhWKd831u-8lXUK9WbOSzPev9J03dYk",
      "mint_transaction_hash": "0xc00a193098900a84e25febbf5278e7638c604489ee662014ccfabf20266073d4",
      "mint_block_timestamp": "2021-05-01 07:45:12.000 UTC",
      "mint_address": "0x7c2b65b98a86d9d2e10216f92674f28cb9fe0f86",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5149",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Diamond Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 222, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Black T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 334, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bayc Flipped Brim\", \"display_type\": null, \"max_value\": null, \"trait_count\": 231, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sleepy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 751, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5152",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5152",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/BFBLfVmNTFh4Gi8nMfkogpbK9Lexvf7aCIBynHopaxnVa0goDDwoKSZ0n7TPVsOu0VvW5aL-v2pvkXFlrIMdQBDL9_rQvsPcV_DX",
      "mint_transaction_hash": "0xc00a193098900a84e25febbf5278e7638c604489ee662014ccfabf20266073d4",
      "mint_block_timestamp": "2021-05-01 07:45:12.000 UTC",
      "mint_address": "0x7c2b65b98a86d9d2e10216f92674f28cb9fe0f86",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5152",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Dumbfounded\", \"display_type\": null, \"max_value\": null, \"trait_count\": 505, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 350, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bunny Ears\", \"display_type\": null, \"max_value\": null, \"trait_count\": 195, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5260",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5260",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/-9kY7-vnVTRADpfidt_MehgzXaP4IOnqivf6LiJLCDck4dIZtxHIePtrOopmSi9_t8rQWT3CVrLq9GOWyH6Y9K1TzHr4nylCFLIU",
      "mint_transaction_hash": "0x2556803dcdb46b5305a72bda96323fb315b72e55798ae00e3ee6ef0f05634bb7",
      "mint_block_timestamp": "2021-05-01 07:48:28.000 UTC",
      "mint_address": "0xe38171c839d3ff70147829d843ee8f9794bc2299",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5260",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Scumbag\", \"display_type\": null, \"max_value\": null, \"trait_count\": 233, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Cream\", \"display_type\": null, \"max_value\": null, \"trait_count\": 636, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme Vuh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Caveman Pelt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 163, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "113",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #113",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/_5O4CY56fIzLvwYkhT1KBJb9EJ04sXMpHsDI_fMKA7kkY3zGbv6tk_Fi8gu16g85Pc9fCAiIaH_O5tHV2AbQLvEpqWiM832YQdI6CA",
      "mint_transaction_hash": "0x1c3ec5e0d65a9267142b235f8134b364bc48de890e20a057476a91aa400d4f25",
      "mint_block_timestamp": "2021-04-24 13:55:49.000 UTC",
      "mint_address": "0x188c30e9a6527f5f0c3f7fe59b72ac7253c62f28",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/113",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Horns\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 308, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Navy Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 334, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1615",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1615",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/Q3VcK2K2YJM2YICIfYZU-ONoxvxMw2KLyxaDRsMlqkIjF32MuwkP9wzTClN3l_kMEHwZ3zAX7HnGE54xfyN0W5XpfvoY12hMlPVj5C4",
      "mint_transaction_hash": "0x9d98d02cd259fe2fd8d6367f4d53f1d65bba93e5b328a530eee85a032eec794c",
      "mint_block_timestamp": "2021-05-01 06:11:53.000 UTC",
      "mint_address": "0x50d4980e76dbc03af979ee813cd6bc60698a9e57",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1615",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 302, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Lab Coat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 144, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sunglasses\", \"display_type\": null, \"max_value\": null, \"trait_count\": 352, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "188",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #188",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/QH0Z0qOYLbyjsIUxGnOJ9v3mNDmNcYnKj8Y2RH3ASgE7n4k0LzEIkhOhrycM5zDZi0bFVCXL_qs92d3AuE7YqccT4i8t-2yw756Xlw",
      "mint_transaction_hash": "0x04d0ab9d6206736fa4069da8057c60b2a9292f1246ea616444c9bb04c7f4af3b",
      "mint_block_timestamp": "2021-04-26 20:33:32.000 UTC",
      "mint_address": "0xf3d9281fa183b74f32b96e1c5244596045f4ede8",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/188",
      "metadata": "{\"traits\": [{\"trait_type\": \"Earring\", \"value\": \"Silver Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 882, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Prom Dress\", \"display_type\": null, \"max_value\": null, \"trait_count\": 103, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sleepy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 751, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2083",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2083",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/KDqOm9ZfiJwoP0DpmmdvQyTbOaKNxXpjCdYBECYuptubmfFWZXfQmpin3av78em3vq2hxhYeAw4Wq-H4V8K4vFwxqJo9fel27rj8UQ",
      "mint_transaction_hash": "0xb7b5848bb2ff446537fcf02ccd15bce550998f7316c7fcdb6464f2e8dc8022ae",
      "mint_block_timestamp": "2021-05-01 06:42:21.000 UTC",
      "mint_address": "0x8d059fb10843a7fbeefbdcf36fc47b5a6f42610d",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2083",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tweed Suit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 141, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fez\", \"display_type\": null, \"max_value\": null, \"trait_count\": 377, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 350, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2139",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2139",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/H0z1L_pYVkSCK5k-lST2aDm6kJFP8EVENFTZmSlti0p821KrU8QZcsgIM8Krmm7XUKY7IAyg68sHtlkiaCO0m0TLtIF2qg3zdfvJVw",
      "mint_transaction_hash": "0x391470c25354c54c2d37af8864de84a80fba1275f260e22195522ea6870ee72f",
      "mint_block_timestamp": "2021-05-01 06:45:08.000 UTC",
      "mint_address": "0x017c4dc18a2d67e82a49c4359016e50fd8e63233",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2139",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Irish Boho\", \"display_type\": null, \"max_value\": null, \"trait_count\": 225, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Diamond Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 222, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 350, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2148",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2148",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/67rhUwaBkUlveJJwk0GRFCtB5h6jHUUG4Z_LHvGA7uu9sHBdPwPtb8isxbPxVcPct9AMMzhNSz_AcoBuO3DNgHZmsTYBqtv_sYHPyQ",
      "mint_transaction_hash": "0x047cb5fbffebe3a0e1b75e48ec4fc792758ebe0fcb155ce21be9aa38ac0574ee",
      "mint_block_timestamp": "2021-05-01 06:45:42.000 UTC",
      "mint_address": "0x8e6df33545b05e1e79dc159c1c2133a3b7cea769",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2148",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Toga\", \"display_type\": null, \"max_value\": null, \"trait_count\": 202, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Crazy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 407, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2345",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2345",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/wfjnB3xNCNnJtWsDmbZKV_iOS1Dg9hvBNIJuFV4T623GPSSvI0yrwkFJ0LKAPFBb8b1dtzOulnz5a6-btXneM8GxdtcY0pvOUsFtpA",
      "mint_transaction_hash": "0x7f7136de29cba2ef6ca40a3295668b9790fb4d8ef36132ab78485d07741013f8",
      "mint_block_timestamp": "2021-05-01 06:52:17.000 UTC",
      "mint_address": "0x403afdf9ea925d3b48e719a44610da1679a57651",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2345",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Coins\", \"display_type\": null, \"max_value\": null, \"trait_count\": 479, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Commie Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 304, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Guayabera\", \"display_type\": null, \"max_value\": null, \"trait_count\": 232, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2531",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2531",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/lKXcBz4pupVxEjScymBUhYsUwAT3tp9jlmHKs3x_Mu6SEzY0tZezLhG6MK1AetZl-E99tRr2wCkoUqmRe2BvO5oLCgWiaLM0WUqdKg",
      "mint_transaction_hash": "0x1a307284a4b3de79a83c43d4359f0e0f046cac355da42a664b2a6ed59a24b96c",
      "mint_block_timestamp": "2021-05-01 06:57:48.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2531",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Horns\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Wide Eyed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 549, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2554",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2554",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/0T_mjOIAqiWzUEmlsP3M-juAaQq8F74R5zAvoZ-ILjC1FwQBEvB1LwYLBOYYDnlnzhV1UjynMwH_qkQhA2ffMJyAKZqXS6Df-rNrmA",
      "mint_transaction_hash": "0xce2020847a2dbc42a7f8acb683ecc077864f014dfc83100012cd33be5df575d0",
      "mint_block_timestamp": "2021-05-01 06:57:53.000 UTC",
      "mint_address": "0xf64579f9f76e060e6e3fc88441d5147f722e9405",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2554",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Sleeveless T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 882, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2845",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2845",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/N_FlGPlqqd7baB-eBs1iI4jF80zMdyYCqDZAwqRvp8GDoudq7Mxyvqgh7su0WukNNzxcN5m3sth_XBu2Ml0sd8RzyRYOV_O8uqkr4A",
      "mint_transaction_hash": "0x08ce28a57153b3f16c8ad28e716dec2a66a8472a2382e2fb88b3cf3cb72aa154",
      "mint_block_timestamp": "2021-05-01 07:04:59.000 UTC",
      "mint_address": "0xb53349160e38739b37e4bbfcf950ed26e26fcb41",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2845",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dmt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Commie Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 304, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Angry\", \"display_type\": null, \"max_value\": null, \"trait_count\": 432, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Vietnam Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 224, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2941",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2941",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/NUeLTsOlBL3kqumCePv9S9FsCe-KR8XSwSRvxwg6VmqVflhuOPV75q-HjoQQmM3H6MkdTF0Q7Ybe8-7po2lCZ8ynT_zwhh-A2ruCiw",
      "mint_transaction_hash": "0x7981e65cc76e04f5f7e25e2c2a492a12ad95bcafabb77951df8fa7181631207f",
      "mint_block_timestamp": "2021-05-01 07:09:32.000 UTC",
      "mint_address": "0xda6ad74619e62503c4cbefbe02ae05c8f4314591",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2941",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"X Eyes\", \"display_type\": null, \"max_value\": null, \"trait_count\": 243, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bayc T Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 140, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Stuntman Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 157, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dark Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1352, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigar\", \"display_type\": null, \"max_value\": null, \"trait_count\": 121, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3134",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3134",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/5iKVWGTD9-uyFfvk1H8XjEGAq86e2bPloRz6jq47mp0i0n_xWVZN59UdAU2RDM5tIGv5LRT_WOBsXzpkPGDKnF2dl9Cs2bGHtoKy",
      "mint_transaction_hash": "0xa19b78dda6328be0f6b80bc5201597049cc8c117448c48a5cb00d4569e969231",
      "mint_block_timestamp": "2021-05-01 07:17:22.000 UTC",
      "mint_address": "0xe288a00df4b697606078876788e4d64633cd2e01",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3134",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 412, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Vietnam Era Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 223, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3183",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3183",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/sU-ZGfxnBhvrIQmybYDTWvcjcFV0qPOmaU6FrXO0zxcJjApKqLuSLbn2rT4CZwv9B2KZc8ObVBRIQFXgt-pyc3R_z8PcTPC9wA1FzQ",
      "mint_transaction_hash": "0x4672071e01af9b64d82d19f5e53288297a92f35731c0853d4f86621aabf22681",
      "mint_block_timestamp": "2021-05-01 07:18:48.000 UTC",
      "mint_address": "0xd1c9e1dc85dedb4b53ad46ef443c1a3c47e686b4",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3183",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"X Eyes\", \"display_type\": null, \"max_value\": null, \"trait_count\": 243, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Irish Boho\", \"display_type\": null, \"max_value\": null, \"trait_count\": 225, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Pipe\", \"display_type\": null, \"max_value\": null, \"trait_count\": 132, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Army Green\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1243, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3755",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3755",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/mHB_UkRg5UoXIIAFTWNbHGXbHNmI5OCN_XBAsG_0s8Vcxm_OFoUkHpnae2nmL5IngNu5HQqgum5jNNUlkA6Sxq8vnhk5tYHpxGN38w",
      "mint_transaction_hash": "0x43d5ae94da66505177ded5f55ca5802cb026a06665150ef29984cb0b23c001f6",
      "mint_block_timestamp": "2021-05-01 07:27:29.000 UTC",
      "mint_address": "0x6c8917547a0dd8d3a9658de9176837cfa9dd8933",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3755",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"King's Crown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 77, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Work Vest\", \"display_type\": null, \"max_value\": null, \"trait_count\": 188, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "380",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #380",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/VUecrtctCldGqzGMZh22ZBKlQe9GJtCg2OmUTGdlDx_lnDyM6yFF1gDfdCxRLgm76Z3i6GtDJ_IFbrpJQJWYZ1m3Ubr9VJjmfwAUlLQ",
      "mint_transaction_hash": "0x41c4c861573fb7f0d47fcab4f590f62e673a124507814afdd0c197a07f22b686",
      "mint_block_timestamp": "2021-04-30 14:14:04.000 UTC",
      "mint_address": "0x5bfdf0cfc4ade055f4aa63c31d3b2558e3a5fd80",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/380",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Seaman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 420, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Jovial\", \"display_type\": null, \"max_value\": null, \"trait_count\": 296, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bayc T Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3828",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3828",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/7MO_E4S2tzlNaj-bjVDvI-wrMgH-NlflvSjP-lvqmmXX1TpJ8OPrrYc2UBD4pcwDj_tcjVQnD_HApsMefGtbS9vRhyM0i71fawBwfQ",
      "mint_transaction_hash": "0x072aab04019677c22a52de85761728c30a49072386ccb99a57645473c4e612d0",
      "mint_block_timestamp": "2021-05-01 07:27:48.000 UTC",
      "mint_address": "0x29b1b2d083456fd07b19649f8b85f9927a29b1ab",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3828",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Heart\", \"display_type\": null, \"max_value\": null, \"trait_count\": 394, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Pipe\", \"display_type\": null, \"max_value\": null, \"trait_count\": 101, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Guayabera\", \"display_type\": null, \"max_value\": null, \"trait_count\": 232, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Safari\", \"display_type\": null, \"max_value\": null, \"trait_count\": 182, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4096",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4096",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/IIott-uCMFrlaWKH7Tv597PLGStKcdkXX70IJIOt0nionfUW0cXk6rhuJvYKTyKostZWP65MSDtZ6nBpgin5NO3rYfxysNQpPUeBrik",
      "mint_transaction_hash": "0x02d84f7d7ca6fc6a7803f01a0ed730d3ebef8cdac0e55f55eb05106d50a0a59b",
      "mint_block_timestamp": "2021-05-01 07:30:42.000 UTC",
      "mint_address": "0x5459d2831fc5ef4cdc1ecee96bf10c1c71083bf0",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4096",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Heart\", \"display_type\": null, \"max_value\": null, \"trait_count\": 394, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dmt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Prussian Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 130, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme Vuh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tanktop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4131",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4131",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/aQvLlpU6--NdLbhE7cv7i4r73oLzTvKWHBwv06LJhmgE_3oz9fKJi0XuiN6jVY98FW6h_yZZuVQOuFpsW4B1_GPPjkeXIQ8nGpg5",
      "mint_transaction_hash": "0x889fda33e3152f00eeeabbfb5e6da0d88c38be5040666270901f9ee7b48b0fec",
      "mint_block_timestamp": "2021-05-01 07:31:15.000 UTC",
      "mint_address": "0x72ba1965320ab5352fd6d68235cc3c5306a6ffa2",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4131",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 412, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bayc Flipped Brim\", \"display_type\": null, \"max_value\": null, \"trait_count\": 231, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Cheetah\", \"display_type\": null, \"max_value\": null, \"trait_count\": 406, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Army Green\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1243, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4224",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4224",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/Y5LI-BEEmTDULInX9vj2mkBjYaWICqwmYapS-bUjWgRL99ZxGGLDWxH89SbcFqLFaIoJ4NM3TXRsvToKoJuIVR5RDKgkV3VbJ389cw",
      "mint_transaction_hash": "0x204f04197393310e83b151b70f9879079d73aa48fb9c202edb25cab02d5468c3",
      "mint_block_timestamp": "2021-05-01 07:32:54.000 UTC",
      "mint_address": "0x1332706a6b68b80c24f7d5fe1d24379c34265e59",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4224",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Work Vest\", \"display_type\": null, \"max_value\": null, \"trait_count\": 188, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Bubblegum\", \"display_type\": null, \"max_value\": null, \"trait_count\": 119, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Cowboy Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 354, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4265",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4265",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/ovoyU5lwQhYZIHbNsADk1mGPDZlLjvBIsTn2v4vBypTuvY0UASHlnQ-JUAPtV26rOsf-xyX7n2PSG8_lkDjVZg6BdzkHTm3vHaoh",
      "mint_transaction_hash": "0x8a07a32186e66136a0b2c59088c7fda1477e45d5cf28e0704ac35fceade2d62b",
      "mint_block_timestamp": "2021-05-01 07:33:49.000 UTC",
      "mint_address": "0x31a47094c6325d357c7331c621d6768ba041916e",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4265",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Coins\", \"display_type\": null, \"max_value\": null, \"trait_count\": 479, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fez\", \"display_type\": null, \"max_value\": null, \"trait_count\": 377, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin Diamond Grill\", \"display_type\": null, \"max_value\": null, \"trait_count\": 78, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Work Vest\", \"display_type\": null, \"max_value\": null, \"trait_count\": 188, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 265, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4367",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4367",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/G3auOw5AM6G-VCBH19SxTAykuq_hx9oS17faWIrEwgdoyk-XvVNCCUivupTOJGVlXYf8jeJVnb8GHToRxauolrTMfnwytYVzVsfM",
      "mint_transaction_hash": "0x9e4be1ace821e02284c4b1f10b2d09ba4d974b04cccec0a62c7e0a2e20cbe299",
      "mint_block_timestamp": "2021-05-01 07:34:51.000 UTC",
      "mint_address": "0x42fe258c554c13746b7c6fb81a184aeb44c64169",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4367",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Heart\", \"display_type\": null, \"max_value\": null, \"trait_count\": 394, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Blue Dress\", \"display_type\": null, \"max_value\": null, \"trait_count\": 95, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Party Hat 1\", \"display_type\": null, \"max_value\": null, \"trait_count\": 120, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Pipe\", \"display_type\": null, \"max_value\": null, \"trait_count\": 101, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4382",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4382",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/ko3fM39Z96cysDFuSBD8uOr6FYmYQQN1KF6bIKyZHynmhTt9RqbKYBilYp7L_roMWZe_DX5bC8qfCdTkPZ3FnKJivVwqsqg7uwHAmBY",
      "mint_transaction_hash": "0x59cb6d844559a0a91a7786e46994ff31b01caa868525690f7d7485de237ec615",
      "mint_block_timestamp": "2021-05-01 07:35:12.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4382",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Prussian Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 130, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Stunt Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 178, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5024",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5024",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/Cdmabkuvqs6oqZeZpq0E8olvX89kpUQjZ8rnLJCPscYY-eumWQzDi74kfENnbn6mwcQbeuYClooO3nloBlGClPE9ngmIKLl7ZmbYzw",
      "mint_transaction_hash": "0x0ffe496a7f96d7788f99774ea2fb6cf98df253364efb2cf13e3b21f5a4a94e77",
      "mint_block_timestamp": "2021-05-01 07:43:37.000 UTC",
      "mint_address": "0xf10e12ef550bfe045d670aa532c0e561bab80e5c",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5024",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"X Eyes\", \"display_type\": null, \"max_value\": null, \"trait_count\": 243, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Service\", \"display_type\": null, \"max_value\": null, \"trait_count\": 142, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 302, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5191",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5191",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/O_Pk121MduwB0vIsH_ZWtnIycx-85S-D6xDL7cgCwWaX2FL2nrx7JEAPksUG9fzYJ2Ugh81ZfDmZfg_V8UY103YsT9ituPP98w34wg",
      "mint_transaction_hash": "0x9d6fbbd3ba1c7a8bc693d7c1ddc5c7f9033f992cb0b034da9ddc95b274e8bed7",
      "mint_block_timestamp": "2021-05-01 07:47:34.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5191",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 308, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Gold Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 462, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bayc Flipped Brim\", \"display_type\": null, \"max_value\": null, \"trait_count\": 231, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5369",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5369",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/-m-LSGr3VjUBBJ9YuJQ2kWzfDEnv8IHN75M4Sw7kt4I94NrjkyDgMerUzb1ukyvvwYD4QrfUuN5tnn9IDgrEnZ7PunjxJitYDmK1Xw",
      "mint_transaction_hash": "0xa3c87ba1b846ad60584fe8b441adfff39159eb7c8422520423acf6bd660db12a",
      "mint_block_timestamp": "2021-05-01 07:48:35.000 UTC",
      "mint_address": "0xcc47fcbfdd6e558fb39cf5ef4d92e59890476b86",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5369",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Hip Hop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 128, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5469",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5469",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/kJBfXvU9wkeojtM9Zgez32bFFSWdxI216djVDU2SUoH9xxgtM6LrezBs52MDfL4fyDz9zpGDIpUQdNAucw9cMuoxcBXcHYq5uT4hTg",
      "mint_transaction_hash": "0xdd9e7139dfa06dc6f6c7f6bef241750ea1f6075f3a236ed148b3c0b26c3329c4",
      "mint_block_timestamp": "2021-05-01 07:49:56.000 UTC",
      "mint_address": "0x8363b3c46c057f9218ddc2f8fa87994173b57d82",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5469",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 350, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Short Mohawk\", \"display_type\": null, \"max_value\": null, \"trait_count\": 318, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 490, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5649",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5649",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/6ZpTFuWxd9qYOAhcKrchoFNc4UVvFAbOWzyOcxmMlPqd3EmKdd1bk9MLzBwbGtkE-NFBcsi3DZ0_46mPEzJ5Cg5LsvCScyjDyU1BzA",
      "mint_transaction_hash": "0x6370c5c68e4d808d78ed327f569ec666fb79bec19f23d312012faf0082a0f6d7",
      "mint_block_timestamp": "2021-05-01 07:53:24.000 UTC",
      "mint_address": "0xc6a7463a7ee700d035aff7bfd1ee198d680a4164",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5649",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Prussian Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 130, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bayc T Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5799",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5799",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/xztKzmljwHd9WRC33iki5YZ2YBWYk_b4NcLPNAp-izhcE1L1IbrhxrfE80_h2dl_Rk_r32SQE-igE3csVF2RTi87aiSz0JA-y5ks",
      "mint_transaction_hash": "0x30dc907b8b5b69444f9b6843df905f44ade8aa725316f8dd04752c42e6011c24",
      "mint_block_timestamp": "2021-05-01 07:54:03.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5799",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Black Holes T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 205, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sleepy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 751, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5889",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5889",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/cTl-DGLSPMk9KpDG4hnFbXmf7iWtUO2x-JIQqeRRoIGJ1VkBI-qjCEr6lHE-pNnGPlRI9UtrpKemMld9BSVfd7AaEI8hQmKixk0otA",
      "mint_transaction_hash": "0x10ba474d1008356151cc3b2aaf679bd3f406558603f2bc69db56ed8635c3cddb",
      "mint_block_timestamp": "2021-05-01 07:55:54.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5889",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Sailor Shirt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 284, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Cowboy Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 354, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Angry\", \"display_type\": null, \"max_value\": null, \"trait_count\": 432, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "5934",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #5934",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/nEalL0BSAVSt8y0qZdQTS-858JdjKfzkYXiJjGP-xTFojB_gRfPDCNWnZQQnrszbGylGWNIRwRNdVkpr4jpH7j63SR_bwr1QHXjOwA",
      "mint_transaction_hash": "0x595a0c7aee9278e2e1891c55a53829ac1acf551a0fbf1068d1ce00b74016a4d7",
      "mint_block_timestamp": "2021-05-01 07:56:27.000 UTC",
      "mint_address": "0x69bab6810fa99475854bca0a3dd72ae6a0728ece",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/5934",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Sailor Shirt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 284, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Dumbfounded\", \"display_type\": null, \"max_value\": null, \"trait_count\": 505, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Noise\", \"display_type\": null, \"max_value\": null, \"trait_count\": 155, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Crazy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 407, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "6241",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #6241",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/8M5gVBmPNP9-aDenX6LOBOeTHd0Z1KoNMviWdBuExw8W11LRIWSRJyqWUx6DHMJWQudWHx4gTjtG0ykEzJPdQHkMXONSOSNdku3pyIQ",
      "mint_transaction_hash": "0xfd26e8a62768f6950882576092a669edf5a764dea357e4d9c6f72cfdaa043672",
      "mint_block_timestamp": "2021-05-01 07:59:43.000 UTC",
      "mint_address": "0x5a418d8bc0c074a4a8fa88d1322dc51cc1cb9d29",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/6241",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Bayc Hat Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 228, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tanktop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "6277",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #6277",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/MaEq7NoMrECfF0WHCY4Pwg3QtuktNx-AHyF5f98trlcSG2LTWKHe-IZZ6j2c56Zxkmq1nfHPusSxiD_naTJPeuiR7fSlprAKHeRuWQ",
      "mint_transaction_hash": "0x422441b62b773254d2d416b2e4972f9e14e78001bbdaf4054d76ad1bd0f8606b",
      "mint_block_timestamp": "2021-05-01 07:59:43.000 UTC",
      "mint_address": "0x51ec5e1b8b3c4c6bae49619e657f94c4ad577b45",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/6277",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Lumberjack Shirt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 213, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme  ooo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 255, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Gold Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 439, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Crazy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 407, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 490, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "6323",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #6323",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/HnHDvbk2bBDXc8OgMU9lYOHAFIo8FwHUsbCQhOz7bcxtnAde999PW1Bbs6QS0ktxbFIYGLwkOlVnA7amjiNnXZKxBXiQSLkjZUIeBA",
      "mint_transaction_hash": "0x4e416dc1108acb2c3ce576e01c1d2e82e203baad8f1475801f105149d4f81706",
      "mint_block_timestamp": "2021-05-01 08:00:16.000 UTC",
      "mint_address": "0xdf3c160116e1cf9ba92b9c4b9329755cf0d4fd20",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/6323",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Discomfort\", \"display_type\": null, \"max_value\": null, \"trait_count\": 208, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Blindfold\", \"display_type\": null, \"max_value\": null, \"trait_count\": 264, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"S&m Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Black Holes T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 205, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "656",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #656",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/KYOTgbdSC2Da8qQwxxBUVd9FTHEsWx5Vuykc0KirL8JwY2uShyMuVZ7sDXH_FfdAUKa465gE2IZf3zhmKcpSlaKO0RUMIO7ES-uSYUs",
      "mint_transaction_hash": "0x4eff82466a0253abc6750c0ac43ed9b03e30c5d0340eef949c9b228cd5b3b380",
      "mint_block_timestamp": "2021-05-01 00:06:29.000 UTC",
      "mint_address": "0xfab97682e0b4b1589786382eeba1b758ffae7ff9",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/656",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Trippy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 77, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"3d\", \"display_type\": null, \"max_value\": null, \"trait_count\": 487, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Toga\", \"display_type\": null, \"max_value\": null, \"trait_count\": 202, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Army Green\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1243, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "664",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #664",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/-gSH753lNqUe2Q76i_H5nI0wB_YzducK61BqRkGLTF-2DairSM3GM01TG9JVVu903GVjVHeoFKMM8QP4SczAcUZFSWDdtiO9Lt7Y2Q",
      "mint_transaction_hash": "0x277924035ed1a55396cc52fd639f7cbe397f8a72c6802f9dfc894e84c1fc8872",
      "mint_block_timestamp": "2021-05-01 00:07:32.000 UTC",
      "mint_address": "0x9795a9baac2f17e7c7f11686bc6bc2afc3d84612",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/664",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme Oh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 237, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fez\", \"display_type\": null, \"max_value\": null, \"trait_count\": 377, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sleepy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 751, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "6652",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #6652",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/ls7YB4gMqzWUvpHE00rW_dn5rAJRPqR0WTGy5S7HFCk-c3EH6Fdy2DMUWjH3_R_pij6Wk0ogBMGgi1JohEDjb4qxe3IcQQJ6bUZo1Q",
      "mint_transaction_hash": "0x3274e1696884f9010ebe56c3fbbfd4a00dbc48c6620e6f8303131609071cbfc8",
      "mint_block_timestamp": "2021-05-01 08:06:11.000 UTC",
      "mint_address": "0xd18001f022154654149ed45888c9c29def6d3ce6",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/6652",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme L\", \"display_type\": null, \"max_value\": null, \"trait_count\": 241, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 308, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bayc T Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "6688",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #6688",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/nKUnTckC9e5RDGt-ERgUAtJjy_YsfU2KHUvD_vwfakfyq76LeOOXXKUjOvKd9ixxpY1geds89Soei4jDGCz7r4GKUCX613MsGQNW",
      "mint_transaction_hash": "0x00bcaf4255bdd57ad19e1fc2c7c9d8ea2538501b28167a53c87be442b458205b",
      "mint_block_timestamp": "2021-05-01 08:06:49.000 UTC",
      "mint_address": "0x574c30f968dc3dce3f1ec5d842b9e81ff5905000",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/6688",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Bandolier\", \"display_type\": null, \"max_value\": null, \"trait_count\": 163, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Cream\", \"display_type\": null, \"max_value\": null, \"trait_count\": 636, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 308, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Cowboy Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 354, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 438, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "7552",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #7552",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/7-rtTvgDtblRKf5WS-4XBhGmAdGWl9BXZCPSWqdBDdZ2gDMPDUc7CimqoZsJIMT0RgPqpZk9AY5tAmPN9_OuMeFKn5bEulpqheuaTQ",
      "mint_transaction_hash": "0x4dab9967007da6962ff39309ac1ea1813d31eb4ee09397fd220dabf2dd737455",
      "mint_block_timestamp": "2021-05-01 08:18:36.000 UTC",
      "mint_address": "0xa61d14017057983f6f3b2101b15b48300c961c01",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/7552",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Prison Jumpsuit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 474, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Short Mohawk\", \"display_type\": null, \"max_value\": null, \"trait_count\": 318, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sleepy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 751, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "7624",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #7624",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/C27sa5K1SrSJfoZHSI52zaqx-eIVZy2uNFNgTipSJxbxdSIckP4kNz4LKcaD46WRVGEcHDw8Dh02xRQ8KDiSVQ0Urmlvn2YORpgBXUw",
      "mint_transaction_hash": "0x3276e3116d66e98e3e425a2a24f0b64821553870c1b15d2a06fdca2ccc08c41b",
      "mint_block_timestamp": "2021-05-01 08:18:39.000 UTC",
      "mint_address": "0xf993d5474cd607e26b57e1de1556bee36de2d0e9",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/7624",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Blindfold\", \"display_type\": null, \"max_value\": null, \"trait_count\": 264, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Diamond Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 222, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Stuntman Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 157, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Prison Jumpsuit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "7702",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #7702",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/kwx454jJRoG8WLCItwRJqywlsz7ovmOQ70iuCIbUPnOmFFXFW2vQ1nLIlZUkO72taTkQJKi-F_4UYLLIYPdVriG_1c4Wf9RD9IFIdA",
      "mint_transaction_hash": "0xcb55643e4877e5c4c183aace7c36f8b81e2fb8ccf48cb43196c558798afdd8b9",
      "mint_block_timestamp": "2021-05-01 08:19:51.000 UTC",
      "mint_address": "0x1eb7b04236b95943dcddfd2e96dbb1ba3b37f44c",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/7702",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Sleeveless T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Coins\", \"display_type\": null, \"max_value\": null, \"trait_count\": 479, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 474, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Small Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 272, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "7958",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #7958",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/9PT_bPS14hO3wLXQttjZFjf3kUE_75oY84-qCXRtdoJhpuQWpMTYIo_kmDlamvPzArLkwerv2SgUE8WJzGfodGdoSUkMWINw5RQ",
      "mint_transaction_hash": "0xaaf590710dcfcb45fa1268b6aa0ebc602d51c995f81f817a63c8c3680e213e8a",
      "mint_block_timestamp": "2021-05-01 08:22:11.000 UTC",
      "mint_address": "0x14b95ed55c0825a30c5bf6d4905379e06749b117",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/7958",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Black Holes T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 205, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bunny Ears\", \"display_type\": null, \"max_value\": null, \"trait_count\": 195, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigar\", \"display_type\": null, \"max_value\": null, \"trait_count\": 121, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8195",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8195",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/jgLlzHSyfU19c3-37mtNO4Tf_ssbzNRyrGe6wi7OYZjFENW0NG-acbIXfT3fAfjiQtilc5zay026BvP7uZwOiz9CWYUBfURik3Qd",
      "mint_transaction_hash": "0xc8276303aa192939971bba87cd5ebb6a85808465805274d77ee175a7f061bfaf",
      "mint_block_timestamp": "2021-05-01 08:24:02.000 UTC",
      "mint_address": "0x1b523dc90a79cf5ee5d095825e586e33780f7188",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8195",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Horns\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Work Vest\", \"display_type\": null, \"max_value\": null, \"trait_count\": 188, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Pink\", \"display_type\": null, \"max_value\": null, \"trait_count\": 511, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 882, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8250",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8250",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/61T7WWu2XX_9JtAnLh32KXGbbB_ZINRQ00dW0rVSvEuyAVJXVzggn8OkWryKyie9IT2QfQVzg0C7rORzJzGRnvtLjZbhOC1OBNP0zg",
      "mint_transaction_hash": "0x7f3cc2ee1f1621d00968fca6adb967c154dd47289e777979b04da9c1d014bf4a",
      "mint_block_timestamp": "2021-05-01 08:24:04.000 UTC",
      "mint_address": "0xd905de91f928b20ea0ccf455e5ba07eb6373955c",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8250",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Tweed Suit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 141, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 265, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Wide Eyed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 549, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8258",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8258",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/W_JE3hwc1UlfRsAMJisKNoQl55ThyP41FRCr-oXmDQvpx51mCbNKv0Rl4XkD6Tn9hbyU_KnC23dSCiKFKKRsR7RJvhMGCv9iOBYYAQ",
      "mint_transaction_hash": "0xf550f77749e06aa9863dcf0e2eea46039c3be404d371e265dbf8e2b471da1cde",
      "mint_block_timestamp": "2021-05-01 08:24:04.000 UTC",
      "mint_address": "0x62cb05fc74548cb01b5d6c9c846bd0c06a42be9e",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8258",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Cream\", \"display_type\": null, \"max_value\": null, \"trait_count\": 636, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Cowboy Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 354, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8367",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8367",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/3TX9lhpbKI2_4FtxOGFGmfnouCAE4FSkChD57B7yNRZWncyaKAbyeZEDfhlNIvd9mCoyrarSFs4v4gYIdHzsb537NiCCX0e8m5ie",
      "mint_transaction_hash": "0x8ebfea7a7c04a6bbe7e4cfc8d9baa2ba9548791a2dbb208b132c38fd6d858a02",
      "mint_block_timestamp": "2021-05-01 08:24:20.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8367",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme L\", \"display_type\": null, \"max_value\": null, \"trait_count\": 241, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Sleeveless T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 252, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Hypnotized\", \"display_type\": null, \"max_value\": null, \"trait_count\": 220, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Prussian Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 130, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 474, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Army Green\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1243, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8598",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8598",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/6FptylRXt-WZOrxnthaWIybx66ERXDjWcMvvJtFalUWM529TQcegRvfylioxulxiiTAZlrpHS5v0gTDAjBzcm5nN-ESOuJPZQcrB",
      "mint_transaction_hash": "0x33f866e9c165e7a197e1212be2c774300c8706499a49f054c7524fa18eb18d8e",
      "mint_block_timestamp": "2021-05-01 08:26:47.000 UTC",
      "mint_address": "0xf8856124ea157d6f26472e38224ee6744ad13af3",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8598",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Dmt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Guayabera\", \"display_type\": null, \"max_value\": null, \"trait_count\": 232, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8602",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8602",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/874WbbxCH8k2k4v6CuzwQn6uGOd1egvLOzbezePjIK9irrbazydNhSJ2cXau8RG41wqNRDQWqoQ3JgfUhA1nizM2ciyoowJiyGeWUQ",
      "mint_transaction_hash": "0x33f866e9c165e7a197e1212be2c774300c8706499a49f054c7524fa18eb18d8e",
      "mint_block_timestamp": "2021-05-01 08:26:47.000 UTC",
      "mint_address": "0xf8856124ea157d6f26472e38224ee6744ad13af3",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8602",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Eyepatch\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bayc Hat Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 119, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Hip Hop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 128, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "8939",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #8939",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/obbXhBUU2j02e69D-pE2WaQX-l073c3f9Bgx5-FSLIShiyp-01LE2L3gIMLdYEebk7PS7dC3HlNQsyNZhwCwoCSXTzjXOOnU9L2U",
      "mint_transaction_hash": "0x4d05af824c5d422ce7a362c5fa0a141530c4e31326eae055a8d77721f964350e",
      "mint_block_timestamp": "2021-05-01 08:30:32.000 UTC",
      "mint_address": "0x6fcade9de3ab9a1e57eab1684cf30e2ceba234fb",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/8939",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dark Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1352, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tuxedo Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "899",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #899",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/rS8Cp8yag1F07GWewNu9I8jiwNJu28dNB-VSXKE-yTmqlauWqYzM4jnmees5PE_5waEIdFseJq6EzbMqN-alryVVSUaf58qMv28vHO4",
      "mint_transaction_hash": "0xbfe1522b51b0e064b22200580ecc642322ff50305a3980e45f9898e70decfe22",
      "mint_block_timestamp": "2021-05-01 02:54:36.000 UTC",
      "mint_address": "0x60fd35191ffa774e40934efb8ed34b2ec42da320",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/899",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Bayc T Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 140, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"3d\", \"display_type\": null, \"max_value\": null, \"trait_count\": 487, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Small Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 272, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Faux Hawk\", \"display_type\": null, \"max_value\": null, \"trait_count\": 136, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "9123",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #9123",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/K7wdD0-tkpXXnnkjaRx5yweb4wg20COBnlMUs7vmpkllieCECjxHh6xs5B6PYxSgLtm_M9WVAO_kXCPo_JMIOkwf00uwW74qaECH62Q",
      "mint_transaction_hash": "0x81ee516aa71bcad81a29cce5c1163da5c191b18da276ef757809e5313aa94f5d",
      "mint_block_timestamp": "2021-05-01 08:31:11.000 UTC",
      "mint_address": "0xe91cbc483a8fda6bc377ad8b8c717f386a93d349",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/9123",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 438, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Sleeveless Logo T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 144, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 350, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "9505",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #9505",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/GRiNvNTxjvftsBLWyYkFq8diq3dzw7kZwA-27K6v_VLqNIUwU68RZhdND0XXEuhFrVZgqwvDzadnzqW4V4cUgAOWkrjJYw2ROs3f9g",
      "mint_transaction_hash": "0x47d7fe3d125565dec3431efb11f6b24abf1c817eb651eaf005e03f12333a3e89",
      "mint_block_timestamp": "2021-05-01 08:33:11.000 UTC",
      "mint_address": "0x1b523dc90a79cf5ee5d095825e586e33780f7188",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/9505",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Leather Punk Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 153, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fez\", \"display_type\": null, \"max_value\": null, \"trait_count\": 377, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Hoop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 882, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Tongue Out\", \"display_type\": null, \"max_value\": null, \"trait_count\": 202, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 490, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "9600",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #9600",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/9titabDGeD8Gx9pIJYw4Jrmdauu7OvNU0ACGTkFBYEaXr9ezGJEIKqnhqaP8ljcXNru_if0sEJ7JISjJ_CrsErrzgBN8QO5OEFn3Ng",
      "mint_transaction_hash": "0xa148f548e66e71c3c4c4b7f8d240e7850a7c4c67eaa59efba9e0e87f1f5b852e",
      "mint_block_timestamp": "2021-05-01 08:33:53.000 UTC",
      "mint_address": "0x9909017a0f637380af916257d05c3e7dd2f6c68a",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/9600",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme  ooo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 255, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Robot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 350, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Cheetah\", \"display_type\": null, \"max_value\": null, \"trait_count\": 406, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Safari\", \"display_type\": null, \"max_value\": null, \"trait_count\": 182, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1030",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1030",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/ta069A9NHRQ526tBRquHC8yzs3VDaLnaQ8ZY3CLSbjXcYwtwsOv4rutxalzMKdRG70YjNW2izGAdVW7bYucim2MMq96b9se3f2xRvw",
      "mint_transaction_hash": "0x15a0bd6ec5f8be1c55b25d65d5aca0f330cc5e9232eb800d3ffa8dfd91aa7a25",
      "mint_block_timestamp": "2021-05-01 03:33:18.000 UTC",
      "mint_address": "0xb9f5039273a63275d2f15e3c970bdbfcf47d0a5f",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1030",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme L\", \"display_type\": null, \"max_value\": null, \"trait_count\": 241, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Biker Vest\", \"display_type\": null, \"max_value\": null, \"trait_count\": 253, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "110",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #110",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/0KX3f0g3_l6F9ooKU1ShrZ2-LF3jEUGWF3YuyLCEBVNRSJHtkth2fkrcFz0zvfMWPxfIA-vppQ5Fe4Q45UeFQKA5Niv5cBApgsBJ1Q",
      "mint_transaction_hash": "0x01b02233ffed74c58fbde234a072ec0e1a4c8864ba20b923e0c1cd44664d5f88",
      "mint_block_timestamp": "2021-04-24 12:51:47.000 UTC",
      "mint_address": "0xe9e9206b598f6fc95e006684fe432f100e876110",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/110",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 412, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Tan\", \"display_type\": null, \"max_value\": null, \"trait_count\": 626, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Cross\", \"display_type\": null, \"max_value\": null, \"trait_count\": 149, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1328",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1328",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/j6lBdFQ-1RzNNfuN0Hrr4kkEbYwWXV2pZp2EZyyk1-ReXp-AKuXVLz7wWOgojQKgRKQt4xlPDOYS4YH5GWxAqyUo8u3eQyN_YuZ9",
      "mint_transaction_hash": "0x725b75b62742ff6edecbbd0a0012de5b92caba746ca908d428c9bb010fe8a190",
      "mint_block_timestamp": "2021-05-01 05:07:37.000 UTC",
      "mint_address": "0x64072ae2095677ab7e8df63e1fbae89b6366d6b4",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1328",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bayc T Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 140, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dmt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 215, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bowler\", \"display_type\": null, \"max_value\": null, \"trait_count\": 262, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1404",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1404",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/-PM7MgMX2ufAFeRscExGLou6Lg0lFv-ijmHvQj9qXCUKOvO3ubdcdnDYV50nN-FTlcZlY-sLjXFDEjy8kc5N289zBwRlBsJ3P2VF",
      "mint_transaction_hash": "0xdbc4644722de1b589b7def40696c8ee56048ed8cb2f3922342b3ca46fe3a27fd",
      "mint_block_timestamp": "2021-05-01 05:36:52.000 UTC",
      "mint_address": "0x442dccee68425828c106a3662014b4f131e3bd9b",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1404",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Space Suit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 105, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Silver Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 823, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 490, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1848",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1848",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/pAXOujhAwdF2uiKSSeCD_QKVx-BXvN3OJCzvje0_3EmL3G_a75SOnsQnPFrPZXRdA4L2Yjlt-grUCogIKXVlxTHYUMH7f4rKid1BQEA",
      "mint_transaction_hash": "0x50c8c77028faa6cc7192e313ab79f78fb164e8113734356a618c24b486182441",
      "mint_block_timestamp": "2021-05-01 06:27:40.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1848",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme Oh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 237, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Prison Jumpsuit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"3d\", \"display_type\": null, \"max_value\": null, \"trait_count\": 487, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Safari\", \"display_type\": null, \"max_value\": null, \"trait_count\": 182, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1950",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #1950",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/k9wMz0GGWG6E1QbtcDT9_jqx7f554Jg1mO6P-slTLCt0n2mS_jkpT2R9eIzbZZ5WKda8WX1hkFgChLroj4vH1OP-KjOmo906O6CDwA",
      "mint_transaction_hash": "0x16fc13851ac897a13cafeb0d19a449bdd11ccc53ab3af29d79ca821fc4824eb6",
      "mint_block_timestamp": "2021-05-01 06:31:42.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/1950",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme  ooo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 255, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Dark Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1352, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Halo\", \"display_type\": null, \"max_value\": null, \"trait_count\": 324, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2059",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2059",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/bY_pspjVRBDT8-1DV5jaNS7NYkBs9TnZrt6oLP5nIRqm175epUN6WcjNhBwSVkhU6BVV3J2pcF5ti_b5Ow3TfQtF6dkwORWuQLgr7g",
      "mint_transaction_hash": "0xdb8b764c94e39f92aa7741c6db6775b90d56dcb6043a40e4395321bec774f8ae",
      "mint_block_timestamp": "2021-05-01 06:40:15.000 UTC",
      "mint_address": "0xad8c7a19bc29ba104cedab894c01d1722ce185e8",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2059",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Trippy Captain's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 65, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Scumbag\", \"display_type\": null, \"max_value\": null, \"trait_count\": 233, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Black T\", \"display_type\": null, \"max_value\": null, \"trait_count\": 334, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme Vuh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2269",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2269",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/3Mt4DNbydY9qu1Gktimamw-3sVlTfWaLJBLoUpmePppyQ2fCgVWePyhKY455DYpggC46XXVV6v24jyS6MPP6s_bbutKw19BYQbmRZr0",
      "mint_transaction_hash": "0xaf80e7c2f9a200aca83fe5ec76ede79535fc0d90e118bb67978495606d8d705f",
      "mint_block_timestamp": "2021-05-01 06:50:59.000 UTC",
      "mint_address": "0xddeaec88e4a183f5acc7d7cfd6f69e300bb6d455",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2269",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Discomfort\", \"display_type\": null, \"max_value\": null, \"trait_count\": 208, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fez\", \"display_type\": null, \"max_value\": null, \"trait_count\": 377, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Leather Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 206, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2442",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2442",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/ULaoHo14kmZENtGbJBUk01TsoJ7gfaB3hRT68z1gp3WYpPrCeLdSgEyOxTo2s4Jgi3sYupeezOgIuHfb59iDOUqhyfm-acN9Evhx2Ag",
      "mint_transaction_hash": "0x60ef7560d490adce696f4683214635c6f7372b0011e81f91375d734048c8981b",
      "mint_block_timestamp": "2021-05-01 06:54:59.000 UTC",
      "mint_address": "0xbcc94f4c922736925e0e9c15391657888e85f435",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2442",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Laurel Wreath\", \"display_type\": null, \"max_value\": null, \"trait_count\": 72, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Sailor Shirt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 284, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven Cigar\", \"display_type\": null, \"max_value\": null, \"trait_count\": 94, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 490, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "2836",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #2836",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/QlVvWz4q4wqYRqPL9No7IHBq9RLeOC_vGi8_CAeAMQCCHex76UMTgZLawfkaBltbUC21x456dmsqIzar1f4IkTa2q_DHgxumSkH5cw",
      "mint_transaction_hash": "0x08ce28a57153b3f16c8ad28e716dec2a66a8472a2382e2fb88b3cf3cb72aa154",
      "mint_block_timestamp": "2021-05-01 07:04:59.000 UTC",
      "mint_address": "0xb53349160e38739b37e4bbfcf950ed26e26fcb41",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2836",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Cream\", \"display_type\": null, \"max_value\": null, \"trait_count\": 636, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Seaman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 420, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Leather Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 206, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3072",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3072",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/y3GFgtAcc5lshAEN_f_t2mnvZVxUGYSBOW2tBJ-xsuQK3rLaLY6QsSj-CuECSiWjvyRMkhf12uVncpODY7gmA3-eOeWGKSHobQ4T1w",
      "mint_transaction_hash": "0x21883590fd30c289ec400c6e6ef398a35ee2907d40d621f1b18b974d4bd00bfc",
      "mint_block_timestamp": "2021-05-01 07:14:45.000 UTC",
      "mint_address": "0x2b0d29ffa81fa6bf35d31db7c3bc11a5913b45ef",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3072",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 412, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Solid Gold\", \"display_type\": null, \"max_value\": null, \"trait_count\": 46, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1714, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Beanie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 578, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3270",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3270",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/m34kBcKoGrPyAfMj2TScbHBpkiNcbo4rye2PfDlLZcSShcxc3H9BFKvi08_5-UGiD7D0WPHPVmvARtSQOxWycFWrwFiH8niOjdROBg",
      "mint_transaction_hash": "0x5ccf8a90c2206c02d8d32a1b1206d9544820c94f9cc0f844c84a6a10e1672334",
      "mint_block_timestamp": "2021-05-01 07:21:44.000 UTC",
      "mint_address": "0x1766255e71a11f9f9d13abe3f2840e3f6942aa29",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3270",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Bayc Hat Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 228, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Zombie\", \"display_type\": null, \"max_value\": null, \"trait_count\": 308, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Bone Necklace\", \"display_type\": null, \"max_value\": null, \"trait_count\": 203, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored\", \"display_type\": null, \"max_value\": null, \"trait_count\": 2272, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "334",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #334",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/gXWD0FpEUNMKxQKcNBbrRYdOFnvAEIchtCOkOkH2H0c00RT7ANX5KZzsmhU0UX03Ni7bTvDAeXGB6T4PdTZ9ysMyyLs8uFW64AeT7QA",
      "mint_transaction_hash": "0xf696e170515ea2a450dc517203f885af1be4541f561f58e7943560283f013c86",
      "mint_block_timestamp": "2021-04-29 20:59:43.000 UTC",
      "mint_address": "0x53797a73169c9cec4b573db7139703152fe9e41d",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/334",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Unshaven\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1551, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Yellow\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1283, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bayc Hat Red\", \"display_type\": null, \"max_value\": null, \"trait_count\": 119, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Death Bot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 175, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Cross\", \"display_type\": null, \"max_value\": null, \"trait_count\": 149, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Angry\", \"display_type\": null, \"max_value\": null, \"trait_count\": 432, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Vietnam Jacket\", \"display_type\": null, \"max_value\": null, \"trait_count\": 224, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "342",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #342",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/RB2s-1WUIgqBmi5mj6jO_9ONfmEKevTEdZjJ9Sq58wxAbztWG60pixtufw4z-GHauoTL5Uj-ELpnkY5ybIiT_LjS05l30RKtsloVzw",
      "mint_transaction_hash": "0x17e303ae9738bbe0075851c61bad1f8baba723fae2919ab35f8b9559f9c12892",
      "mint_block_timestamp": "2021-04-29 21:16:54.000 UTC",
      "mint_address": "0x990d69a7541c73f853f1c75db6374a9d75cd9cd9",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/342",
      "metadata": "{\"traits\": [{\"trait_type\": \"Clothes\", \"value\": \"Work Vest\", \"display_type\": null, \"max_value\": null, \"trait_count\": 188, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Pipe\", \"display_type\": null, \"max_value\": null, \"trait_count\": 132, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bayc Flipped Brim\", \"display_type\": null, \"max_value\": null, \"trait_count\": 231, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3510",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3510",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/JUJXpLt8ZR0v05VCwPysZLwmPnrHL_k4eqeR8ztxNMXSfvPvsRiJx5ORO6bT4b7_Vvb_Cy5WwcNcxOGGcjkfXNLqT5WdEYPBb5ht0Q",
      "mint_transaction_hash": "0xe9db06d847528421c38f4c046a1e3839f936f7a4bb2a2b5c4e1a49e0159163eb",
      "mint_block_timestamp": "2021-05-01 07:24:13.000 UTC",
      "mint_address": "0x721931508df2764fd4f70c53da646cb8aed16ace",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3510",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme Vuh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Orange\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1273, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sleepy\", \"display_type\": null, \"max_value\": null, \"trait_count\": 751, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Safari\", \"display_type\": null, \"max_value\": null, \"trait_count\": 182, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3530",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3530",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/d2oXdymnvMlxgxCzSX6EtKEMidR2t6g4Aw0z1-ij6x1nwjXCQqRMwbhEf41ozzBmQN6qmfPmRZnt7jX6dQ2XvLUbk6D9ReNGT5KMEOU",
      "mint_transaction_hash": "0xcdd098e5714dc01c757c78381936e5617a4917dbfed1d65024bc582e35fa6888",
      "mint_block_timestamp": "2021-05-01 07:24:23.000 UTC",
      "mint_address": "0x721931508df2764fd4f70c53da646cb8aed16ace",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3530",
      "metadata": "{\"traits\": [{\"trait_type\": \"Fur\", \"value\": \"Tan\", \"display_type\": null, \"max_value\": null, \"trait_count\": 626, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Dagger\", \"display_type\": null, \"max_value\": null, \"trait_count\": 49, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tie Dye\", \"display_type\": null, \"max_value\": null, \"trait_count\": 144, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Bloodshot\", \"display_type\": null, \"max_value\": null, \"trait_count\": 846, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1170, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Bowler\", \"display_type\": null, \"max_value\": null, \"trait_count\": 262, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3613",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "",
      "description": "",
      "image_url": "https://lh3.googleusercontent.com/oL4AdffUroLQkUK7YtbTETAw9nZQA2M4sFUV7F7cGi73DaIv4GBNteoRKH20oZfMMsAlQT5DFf13HA_YNW3I5BwlltPT0CeLKNBCJDw",
      "mint_transaction_hash": "0x00006614dade7f56557b84e5fe674a264a50e83eec52ccec62c9fff4c2de4a2a",
      "mint_block_timestamp": "2021-05-01 07:25:26.000 UTC",
      "mint_address": "0xee402489d83e2b22d496910f8c810d35a3ad7b25",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3613",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme L\", \"display_type\": null, \"max_value\": null, \"trait_count\": 241, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"S&m Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Tanktop\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Army Green\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1243, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3889",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3889",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/bKXF-TInu-C6WsGf4ijB3JWo5QC0iS4Q0Gi5PCur2I1Lm_OZplA5v-QyJV_ihBli5OCqAjajFTG_obMXMswHCoC6wg_xnwrltwDv6w",
      "mint_transaction_hash": "0xa2d10ea1f37c2550884d4724719a7715211246fb414dfd6d9d0f11780d63db44",
      "mint_block_timestamp": "2021-05-01 07:28:31.000 UTC",
      "mint_address": "0x29b1b2d083456fd07b19649f8b85f9927a29b1ab",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3889",
      "metadata": "{\"traits\": [{\"trait_type\": \"Hat\", \"value\": \"Sushi Chef Headband\", \"display_type\": null, \"max_value\": null, \"trait_count\": 187, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Black\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1229, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Bored Pizza\", \"display_type\": null, \"max_value\": null, \"trait_count\": 50, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "3915",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #3915",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/U-tvX8yfOuTMnlBgCqFufiTmmfDYI1EC3WmkOGrH0s3dzwuZEEBa4yyPdnA16N7H2g4bm-ItIpYGgxPCjqi9hl2QVHOdlcLRf_vYNYE",
      "mint_transaction_hash": "0x44cce718b50880327e4e4cdad07993bb0ecd672f991afb0d3a08c17eb2589a15",
      "mint_block_timestamp": "2021-05-01 07:28:45.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/3915",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Heart\", \"display_type\": null, \"max_value\": null, \"trait_count\": 394, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Sushi Chef Headband\", \"display_type\": null, \"max_value\": null, \"trait_count\": 187, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Sailor Shirt\", \"display_type\": null, \"max_value\": null, \"trait_count\": 284, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Purple\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1291, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/lCQ3OZF_3JuMMgDZyhtNjNXzcYSQbeLOo4vhRjaKEgAqFsbqc2lCtqiKByyjp-vakx5ZdlxrUtXdyMQ9CMskrPurc_QdSWEBwTme4Q",
      "mint_transaction_hash": "0xcfb197f62ec5c7f0e71a11ec0c4a0e394a3aa41db5386e85526f86c84b3f2796",
      "mint_block_timestamp": "2021-04-22 23:13:40.000 UTC",
      "mint_address": "0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Phoneme L\", \"display_type\": null, \"max_value\": null, \"trait_count\": 241, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Party Hat 2\", \"display_type\": null, \"max_value\": null, \"trait_count\": 107, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Golden Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 778, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Navy Striped Tee\", \"display_type\": null, \"max_value\": null, \"trait_count\": 334, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4010",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4010",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/DM0Y_wnY5Phnvw8IubiznbwwD7MBjNRILVvhE5fbGDsvVPNtFfUsNRZXS3w0nhGlMS7oooR91wNPVKnjafEH4PF2V5n6gnS1PaZ7DQ",
      "mint_transaction_hash": "0xb20984a5a3fae41f232c8424a44d7c15a282c8c2a256f114e249641ceb992ede",
      "mint_block_timestamp": "2021-05-01 07:29:17.000 UTC",
      "mint_address": "0xd387a6e4e84a6c86bd90c158c6028a58cc8ac459",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4010",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Gray\", \"display_type\": null, \"max_value\": null, \"trait_count\": 496, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Phoneme Vuh\", \"display_type\": null, \"max_value\": null, \"trait_count\": 333, \"order\": null}, {\"trait_type\": \"Earring\", \"value\": \"Gold Stud\", \"display_type\": null, \"max_value\": null, \"trait_count\": 439, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Safari\", \"display_type\": null, \"max_value\": null, \"trait_count\": 182, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Sad\", \"display_type\": null, \"max_value\": null, \"trait_count\": 551, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4051",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4051",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/Hxp6PstYAi8zsekYk69hGaKvT3Zyv9lO4_1bdv0IO8UCu66VdtoVcOZAoS-h1_h4AFa-iqN6xN9bBE5Ux0lfNLPfJ_pw7eMHm2wr",
      "mint_transaction_hash": "0x2cb16aca18904010c7cede1603559f5a4a8897c616669797133fd676f3ffb73e",
      "mint_block_timestamp": "2021-05-01 07:29:54.000 UTC",
      "mint_address": "0xa7305315c881ef6ad15324d9b3e7b089cfee0f7e",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4051",
      "metadata": "{\"traits\": [{\"trait_type\": \"Eyes\", \"value\": \"Closed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Grin\", \"display_type\": null, \"max_value\": null, \"trait_count\": 713, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Aquamarine\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1266, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Cowboy Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 354, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4225",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4225",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/vm4mhuQ9H70TcLZ1rnhpVsQvHlSJmL1wLQIuPAmkEYTirLJv5pi5AZuQJ9hFiSBetpZ6LDogr0y6U5fdc_ywdZ-aF91Stu_nu3atyw",
      "mint_transaction_hash": "0x204f04197393310e83b151b70f9879079d73aa48fb9c202edb25cab02d5468c3",
      "mint_block_timestamp": "2021-05-01 07:32:54.000 UTC",
      "mint_address": "0x1332706a6b68b80c24f7d5fe1d24379c34265e59",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4225",
      "metadata": "{\"traits\": [{\"trait_type\": \"Mouth\", \"value\": \"Bored Cigarette\", \"display_type\": null, \"max_value\": null, \"trait_count\": 710, \"order\": null}, {\"trait_type\": \"Clothes\", \"value\": \"Prison Jumpsuit\", \"display_type\": null, \"max_value\": null, \"trait_count\": 235, \"order\": null}, {\"trait_type\": \"Background\", \"value\": \"Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1242, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Fisherman's Hat\", \"display_type\": null, \"max_value\": null, \"trait_count\": 345, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"White\", \"display_type\": null, \"max_value\": null, \"trait_count\": 397, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Wide Eyed\", \"display_type\": null, \"max_value\": null, \"trait_count\": 549, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "4228",
      "collection_slug": "bored-ape-yacht-club",
      "collection_name": null,
      "token_name": "BoredApeYachtClub #4228",
      "description": null,
      "image_url": "https://lh3.googleusercontent.com/DUlgTi73tzcEQzpazB4WwXJDhAQeucaJx36RseXPSyRydYttiiFKzxEhjFn5hoA02fdMBnm2qNIffpmchC4gWv1tdzfgfkrSpjp2Qg",
      "mint_transaction_hash": "0x204f04197393310e83b151b70f9879079d73aa48fb9c202edb25cab02d5468c3",
      "mint_block_timestamp": "2021-05-01 07:32:54.000 UTC",
      "mint_address": "0x1332706a6b68b80c24f7d5fe1d24379c34265e59",
      "metadata_uri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/4228",
      "metadata": "{\"traits\": [{\"trait_type\": \"Background\", \"value\": \"New Punk Blue\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1232, \"order\": null}, {\"trait_type\": \"Eyes\", \"value\": \"Hypnotized\", \"display_type\": null, \"max_value\": null, \"trait_count\": 220, \"order\": null}, {\"trait_type\": \"Mouth\", \"value\": \"Dumbfounded\", \"display_type\": null, \"max_value\": null, \"trait_count\": 505, \"order\": null}, {\"trait_type\": \"Fur\", \"value\": \"Brown\", \"display_type\": null, \"max_value\": null, \"trait_count\": 1370, \"order\": null}, {\"trait_type\": \"Hat\", \"value\": \"Vietnam Era Helmet\", \"display_type\": null, \"max_value\": null, \"trait_count\": 223, \"order\": null}]}",
      "internet_mime_type": "image/png",
      "animation_url": null,
      "created_at": "2022-09-08 00:00:00.000 UTC",
      "updated_at": "2022-09-08 00:00:00.000 UTC"
    }
  ]
}
{
  "message": "success",
  "code": 0,
  "data": [
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "0",
      "attribute_key": "Background",
      "attribute_value": "Orange",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "0",
      "attribute_key": "Clothes",
      "attribute_value": "Striped Tee",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "0",
      "attribute_key": "Earring",
      "attribute_value": "Silver Hoop",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "0",
      "attribute_key": "Eyes",
      "attribute_value": "X Eyes",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "0",
      "attribute_key": "Fur",
      "attribute_value": "Robot",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "0",
      "attribute_key": "Mouth",
      "attribute_value": "Discomfort",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1",
      "attribute_key": "Background",
      "attribute_value": "Orange",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1",
      "attribute_key": "Clothes",
      "attribute_value": "Vietnam Jacket",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1",
      "attribute_key": "Eyes",
      "attribute_value": "Blue Beams",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1",
      "attribute_key": "Fur",
      "attribute_value": "Robot",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1",
      "attribute_key": "Mouth",
      "attribute_value": "Grin",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "10",
      "attribute_key": "Background",
      "attribute_value": "Aquamarine",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "10",
      "attribute_key": "Clothes",
      "attribute_value": "Navy Striped Tee",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "10",
      "attribute_key": "Eyes",
      "attribute_value": "Eyepatch",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "10",
      "attribute_key": "Fur",
      "attribute_value": "Dmt",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "10",
      "attribute_key": "Hat",
      "attribute_value": "Bayc Hat Red",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "10",
      "attribute_key": "Mouth",
      "attribute_value": "Bored",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "100",
      "attribute_key": "Background",
      "attribute_value": "Yellow",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "100",
      "attribute_key": "Eyes",
      "attribute_value": "Wide Eyed",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "100",
      "attribute_key": "Fur",
      "attribute_value": "Dark Brown",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "100",
      "attribute_key": "Hat",
      "attribute_value": "Party Hat 2",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "100",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Cigarette",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1000",
      "attribute_key": "Background",
      "attribute_value": "Aquamarine",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1000",
      "attribute_key": "Clothes",
      "attribute_value": "Toga",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1000",
      "attribute_key": "Eyes",
      "attribute_value": "Hypnotized",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1000",
      "attribute_key": "Fur",
      "attribute_value": "Brown",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1000",
      "attribute_key": "Hat",
      "attribute_value": "Prussian Helmet",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1000",
      "attribute_key": "Mouth",
      "attribute_value": "Phoneme  ooo",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1001",
      "attribute_key": "Background",
      "attribute_value": "Orange",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1001",
      "attribute_key": "Eyes",
      "attribute_value": "Robot",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1001",
      "attribute_key": "Fur",
      "attribute_value": "Brown",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1001",
      "attribute_key": "Hat",
      "attribute_value": "Fez",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1001",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Unshaven",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1002",
      "attribute_key": "Background",
      "attribute_value": "Orange",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1002",
      "attribute_key": "Clothes",
      "attribute_value": "Prison Jumpsuit",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1002",
      "attribute_key": "Eyes",
      "attribute_value": "Coins",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1002",
      "attribute_key": "Fur",
      "attribute_value": "Dark Brown",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1002",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Cigarette",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1003",
      "attribute_key": "Background",
      "attribute_value": "Gray",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1003",
      "attribute_key": "Clothes",
      "attribute_value": "Tweed Suit",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1003",
      "attribute_key": "Eyes",
      "attribute_value": "Eyepatch",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1003",
      "attribute_key": "Fur",
      "attribute_value": "Cheetah",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1003",
      "attribute_key": "Mouth",
      "attribute_value": "Small Grin",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Background",
      "attribute_value": "Purple",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Clothes",
      "attribute_value": "Sailor Shirt",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Earring",
      "attribute_value": "Silver Stud",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Eyes",
      "attribute_value": "Wide Eyed",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Fur",
      "attribute_value": "Black",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Hat",
      "attribute_value": "Halo",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1004",
      "attribute_key": "Mouth",
      "attribute_value": "Small Grin",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1005",
      "attribute_key": "Background",
      "attribute_value": "Aquamarine",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1005",
      "attribute_key": "Eyes",
      "attribute_value": "X Eyes",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1005",
      "attribute_key": "Fur",
      "attribute_value": "Cream",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1005",
      "attribute_key": "Mouth",
      "attribute_value": "Bored",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1006",
      "attribute_key": "Background",
      "attribute_value": "Orange",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1006",
      "attribute_key": "Clothes",
      "attribute_value": "Smoking Jacket",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1006",
      "attribute_key": "Eyes",
      "attribute_value": "Coins",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1006",
      "attribute_key": "Fur",
      "attribute_value": "White",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1006",
      "attribute_key": "Hat",
      "attribute_value": "Cowboy Hat",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1006",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Unshaven",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1007",
      "attribute_key": "Background",
      "attribute_value": "New Punk Blue",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1007",
      "attribute_key": "Eyes",
      "attribute_value": "Angry",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1007",
      "attribute_key": "Fur",
      "attribute_value": "Red",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1007",
      "attribute_key": "Hat",
      "attribute_value": "Seaman's Hat",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1007",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Unshaven Cigarette",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1008",
      "attribute_key": "Background",
      "attribute_value": "Yellow",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1008",
      "attribute_key": "Clothes",
      "attribute_value": "Biker Vest",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1008",
      "attribute_key": "Eyes",
      "attribute_value": "Bored",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1008",
      "attribute_key": "Fur",
      "attribute_value": "Gray",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1008",
      "attribute_key": "Hat",
      "attribute_value": "Army Hat",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1008",
      "attribute_key": "Mouth",
      "attribute_value": "Grin Diamond Grill",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1009",
      "attribute_key": "Background",
      "attribute_value": "New Punk Blue",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1009",
      "attribute_key": "Clothes",
      "attribute_value": "Smoking Jacket",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1009",
      "attribute_key": "Eyes",
      "attribute_value": "Robot",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1009",
      "attribute_key": "Fur",
      "attribute_value": "Black",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1009",
      "attribute_key": "Hat",
      "attribute_value": "Commie Hat",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1009",
      "attribute_key": "Mouth",
      "attribute_value": "Phoneme Oh",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "101",
      "attribute_key": "Background",
      "attribute_value": "Army Green",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "101",
      "attribute_key": "Clothes",
      "attribute_value": "Navy Striped Tee",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "101",
      "attribute_key": "Eyes",
      "attribute_value": "Eyepatch",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "101",
      "attribute_key": "Fur",
      "attribute_value": "Gray",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "101",
      "attribute_key": "Hat",
      "attribute_value": "Fisherman's Hat",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "101",
      "attribute_key": "Mouth",
      "attribute_value": "Bored",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1010",
      "attribute_key": "Background",
      "attribute_value": "Army Green",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1010",
      "attribute_key": "Clothes",
      "attribute_value": "Puffy Vest",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1010",
      "attribute_key": "Eyes",
      "attribute_value": "Crazy",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1010",
      "attribute_key": "Fur",
      "attribute_value": "Black",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1010",
      "attribute_key": "Hat",
      "attribute_value": "Irish Boho",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1010",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Unshaven",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1011",
      "attribute_key": "Background",
      "attribute_value": "Yellow",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1011",
      "attribute_key": "Clothes",
      "attribute_value": "Sailor Shirt",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1011",
      "attribute_key": "Eyes",
      "attribute_value": "Bored",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1011",
      "attribute_key": "Fur",
      "attribute_value": "Death Bot",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1011",
      "attribute_key": "Mouth",
      "attribute_value": "Bored",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1012",
      "attribute_key": "Background",
      "attribute_value": "Yellow",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1012",
      "attribute_key": "Clothes",
      "attribute_value": "Lumberjack Shirt",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1012",
      "attribute_key": "Eyes",
      "attribute_value": "Bloodshot",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1012",
      "attribute_key": "Fur",
      "attribute_value": "Pink",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1012",
      "attribute_key": "Hat",
      "attribute_value": "Police Motorcycle Helmet",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    },
    {
      "chain": "Ethereum",
      "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
      "nft_token_id": "1012",
      "attribute_key": "Mouth",
      "attribute_value": "Bored Unshaven Cigarette",
      "collection_slug": "bored-ape-yacht-club",
      "attribute_type": "string",
      "created_at": "2022-09-08 01:00:00.000 UTC",
      "updated_at": "2022-09-08 01:00:00.000 UTC"
    }
  ]
}