Detailed Endpoint Mappings
This section aims to provide a comprehensive and detailed mapping of the changes that have occurred in each endpoint between NFT API V2 and V3. For each endpoint, we will outline any changes in the method name, provide example requests in both V2 and V3, and present a mapping table that highlights the differences in the response structure ( where applicable ). Additionally, we will include examples of the V2 and V3 responses to help illustrate the changes.
Queries NFT high-level collection/contract information.
Overview of Changes in Response
- The
contractMetadata
object has been flattened, with its fields now directly accessible. - The
openSea
object has been renamed toopenSeaMetadata
.
Example Requests
V2 Example Request
curl --request GET \
--url 'https://eth-mainnet.g.alchemy.com/nft/v2/demo/getContractMetadata?contractAddress=0x8CC6517e45dB7a0803feF220D9b577326A12033f&refreshCache=true' \
--header 'accept: application/json'
V3 Example Request
curl --request GET \
--url 'https://eth-mainnet.g.alchemy.com/nft/v3/demo/getContractMetadata?contractAddress=0x8CC6517e45dB7a0803feF220D9b577326A12033f&refreshCache=true' \
--header 'accept: application/json'
V2 <> V3 Mapping
V2 | V3 |
---|---|
address | address |
contractmetadata.name | name |
contractmetadata.name.symbol | symbol |
contractMetadata.totalSupply | totalSupply |
contractMetadata.tokenType | tokenType |
contractMetadata.contractDeployer | contractDeployer |
contractMetadata.deployedBlockNumber | deployedBlockNumber |
contractMetadata.openSea.floorPrice | openSeaMetadata.floorPrice |
contractMetadata.openSea.collectionName | openSeaMetadata.collectionName |
contractMetadata.openSea.safelistRequestStatus | openSeaMetadata.safelistRequestStatus |
contractMetadata.openSea.imageUrl | openSeaMetadata.imageUrl |
contractMetadata.openSea.description | openSeaMetadata.description |
contractMetadata.openSea.externalUrl | openSeaMetadata.externalUrl |
contractMetadata.openSea.twitterUsername | openSeaMetadata.twitterUsername |
contractMetadata.openSea.discordUrl | openSeaMetadata.discordUrl |
contractMetadata.openSea.lastIngestedAt | openSeaMetadata.lastIngestedAt |
Example Responses
V2 Example Response
{
"address":"0x8cc6517e45db7a0803fef220d9b577326a12033f",
"contractMetadata":{
"name":"Link3",
"symbol":"LINK3",
"totalSupply":"23216",
"tokenType":"ERC721",
"contractDeployer":"0xa7b6bef855c1c57df5b7c9c7a4e1eb757e544e7f",
"deployedBlockNumber":15164734,
"openSea":{
"floorPrice":0.02,
"collectionName":"Link3",
"safelistRequestStatus":"not_requested",
"imageUrl":"https://i.seadn.io/gcs/files/070f3c5149a0d4bfae3a04312af6d42f.png?w=500&auto=format",
"description":"Link3 is a Web3 social network of verifiable identities. \n\nAggregating both on-chain and off-chain data, Link3 profiles serve as holistic identities enabling trustworthy networking and meaningful connections among users and organizations.",
"externalUrl":"http://link3.to",
"twitterUsername":"link3to",
"discordUrl":"https://discord.gg/cUc8VRGmPs",
"lastIngestedAt":"2023-03-20T13:38:03.000Z"
}
}
}
V3 Example Response
{
"address": "0x8CC6517e45dB7a0803feF220D9b577326A12033f",
"name": "Link3",
"symbol": "LINK3",
"totalSupply": "23216",
"tokenType": "ERC721",
"contractDeployer": "0xA7b6bEf855c1c57Df5b7C9c7a4e1eB757e544e7f",
"deployedBlockNumber": 15164734,
"openSeaMetadata": {
"floorPrice": 0.02,
"collectionName": "Link3",
"safelistRequestStatus": "not_requested",
"imageUrl": "https://i.seadn.io/gcs/files/070f3c5149a0d4bfae3a04312af6d42f.png?w=500&auto=format",
"description": "Link3 is a Web3 social network of verifiable identities. \n\nAggregating both on-chain and off-chain data, Link3 profiles serve as holistic identities enabling trustworthy networking and meaningful connections among users and organizations.",
"externalUrl": "http://link3.to",
"twitterUsername": "link3to",
"discordUrl": "https://discord.gg/cUc8VRGmPs",
"lastIngestedAt": "2023-03-20T13:38:03.000Z"
}
}
Gets the metadata associated with the given list of contract addresses
Overview of Changes in Respons
- The
contractMetadata
object has been flattened, with its fields now directly accessible. - The
openSea
object has been renamed toopenSeaMetadata
.
Example Requests
V2 Example Request
curl --request POST \
--url https://eth-mainnet.g.alchemy.com/nft/v2/demo/getContractMetadataBatch \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"contractAddresses": [
"0xe785E82358879F061BC3dcAC6f0444462D4b5330",
"0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"
]
}'
V3 Example Request
curl --request POST \
--url https://eth-mainnet.g.alchemy.com/nft/v3/demo/getContractMetadataBatch \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"contractAddresses": [
"0xe785E82358879F061BC3dcAC6f0444462D4b5330",
"0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"
]
}'
V2 <> V3 Mapping
The response is an array of contract objects where each contract object contains the following fields:
V2 | V3 |
---|---|
address | address |
contractmetadata.name | name |
contractmetadata.name.symbol | symbol |
contractMetadata.totalSupply | totalSupply |
contractMetadata.tokenType | tokenType |
contractMetadata.contractDeployer | contractDeployer |
contractMetadata.deployedBlockNumber | deployedBlockNumber |
contractMetadata.openSea.floorPrice | openSeaMetadata.floorPrice |
contractMetadata.openSea.collectionName | openSeaMetadata.collectionName |
contractMetadata.openSea.safelistRequestStatus | openSeaMetadata.safelistRequestStatus |
contractMetadata.openSea.imageUrl | openSeaMetadata.imageUrl |
contractMetadata.openSea.description | openSeaMetadata.description |
contractMetadata.openSea.externalUrl | openSeaMetadata.externalUrl |
contractMetadata.openSea.twitterUsername | openSeaMetadata.twitterUsername |
contractMetadata.openSea.discordUrl | openSeaMetadata.discordUrl |
contractMetadata.openSea.lastIngestedAt | openSeaMetadata.lastIngestedAt |
Example Responses
V2 Example Response
[{
"address": "0xe785e82358879f061bc3dcac6f0444462d4b5330",
"contractMetadata": {
"name": "World Of Women",
"symbol": "WOW",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xc9b6321dc216d91e626e9baa61b06b0e4d55bdb1",
"deployedBlockNumber": 12907782,
"openSea": {
"floorPrice": 1.539,
"collectionName": "World of Women",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/EFAQpIktMBU5SU0TqSdPWZ4byHr3hFirL_mATsR8KWhM5z-GJljX8E73V933lkyKgv2SAFlfRRjGsWvWbQQmJAwu3F2FDXVa1C9F?w=500&auto=format",
"description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.",
"externalUrl": "http://worldofwomen.art",
"twitterUsername": "worldofwomennft",
"discordUrl": "https://discord.gg/worldofwomen",
"lastIngestedAt": "2023-04-12T22:39:51.000Z"
}
}
}, {
"address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"contractMetadata": {
"name": "BoredApeYachtClub",
"symbol": "BAYC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03",
"deployedBlockNumber": 12287507,
"openSea": {
"floorPrice": 68.16,
"collectionName": "Bored Ape Yacht Club",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB?w=500&auto=format",
"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.",
"externalUrl": "http://www.boredapeyachtclub.com/",
"twitterUsername": "BoredApeYC",
"discordUrl": "https://discord.gg/3P5K3dzgdB",
"lastIngestedAt": "2023-03-21T03:54:33.000Z"
}
}
}]
V3 Example Response
{
"contracts": [{
"address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330",
"name": "World Of Women",
"symbol": "WOW",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1",
"deployedBlockNumber": 12907782,
"openSeaMetadata": {
"floorPrice": 1.539,
"collectionName": "World of Women",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/EFAQpIktMBU5SU0TqSdPWZ4byHr3hFirL_mATsR8KWhM5z-GJljX8E73V933lkyKgv2SAFlfRRjGsWvWbQQmJAwu3F2FDXVa1C9F?w=500&auto=format",
"description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.",
"externalUrl": "http://worldofwomen.art",
"twitterUsername": "worldofwomennft",
"discordUrl": "https://discord.gg/worldofwomen",
"lastIngestedAt": "2023-04-12T22:39:51.000Z"
}
}, {
"address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D",
"name": "BoredApeYachtClub",
"symbol": "BAYC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xaBA7161A7fb69c88e16ED9f455CE62B791EE4D03",
"deployedBlockNumber": 12287507,
"openSeaMetadata": {
"floorPrice": 68.16,
"collectionName": "Bored Ape Yacht Club",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB?w=500&auto=format",
"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.",
"externalUrl": "http://www.boredapeyachtclub.com/",
"twitterUsername": "BoredApeYC",
"discordUrl": "https://discord.gg/3P5K3dzgdB",
"lastIngestedAt": "2023-03-21T03:54:33.000Z"
}
}]
}
Search for a keyword across metadata of all ERC-721 and ERC-1155 smart contracts
Overview of Changes in Response
- The response now contains a
contracts
object with an array of contracts. - The
contractMetadata
object has been flattened, with its fields now directly accessible. - The
openSea
object has been renamed toopenSeaMetadata
.
Example Requests
V2 Example Request
curl --request GET \
--url 'https://eth-mainnet.g.alchemy.com/nft/v2/demo/searchContractMetadata?query=bored' \
--header 'accept: application/json'
V3 Example Request
curl --request GET \
--url 'https://eth-mainnet.g.alchemy.com/nft/v3/demo/searchContractMetadata?query=bored' \
--header 'accept: application/json'
V2 <> V3 Mapping
V2 | V3 |
---|---|
address | address |
contractmetadata.name | name |
contractmetadata.name.symbol | symbol |
contractMetadata.totalSupply | totalSupply |
contractMetadata.tokenType | tokenType |
contractMetadata.contractDeployer | contractDeployer |
contractMetadata.deployedBlockNumber | deployedBlockNumber |
contractMetadata.openSea.floorPrice | openSeaMetadata.floorPrice |
contractMetadata.openSea.collectionName | openSeaMetadata.collectionName |
contractMetadata.openSea.safelistRequestStatus | openSeaMetadata.safelistRequestStatus |
contractMetadata.openSea.imageUrl | openSeaMetadata.imageUrl |
contractMetadata.openSea.description | openSeaMetadata.description |
contractMetadata.openSea.externalUrl | openSeaMetadata.externalUrl |
contractMetadata.openSea.twitterUsername | openSeaMetadata.twitterUsername |
contractMetadata.openSea.discordUrl | openSeaMetadata.discordUrl |
contractMetadata.openSea.lastIngestedAt | openSeaMetadata.lastIngestedAt |
Example Responses
V2 Example Response
[{
"address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"contractMetadata": {
"name": "BoredApeYachtClub",
"symbol": "BAYC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03",
"deployedBlockNumber": 12287507,
"openSea": {
"floorPrice": 68.16,
"collectionName": "Bored Ape Yacht Club",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB?w=500&auto=format",
"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.",
"externalUrl": "http://www.boredapeyachtclub.com/",
"twitterUsername": "BoredApeYC",
"discordUrl": "https://discord.gg/3P5K3dzgdB",
"lastIngestedAt": "2023-03-21T03:54:33.000Z"
}
}
}, {
"address": "0xba30e5f9bb24caa003e9f2f0497ad287fdf95623",
"contractMetadata": {
"name": "BoredApeKennelClub",
"symbol": "BAKC",
"totalSupply": "9602",
"tokenType": "ERC721",
"contractDeployer": "0xaf62311ee2224fed4d3884a1793b4c50b86f4462",
"deployedBlockNumber": 12660509,
"openSea": {
"floorPrice": 7.58,
"collectionName": "Bored Ape Kennel Club",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gcs/files/c4dfc6be4d9c5d4f073de2efe181416a.jpg?w=500&auto=format",
"description": "It gets lonely in the swamp sometimes. That's why every ape should have a four-legged companion. To curl up at your feet. To bring you a beer. To fire a missile launcher at that bastard Jimmy the Monkey.\r\n\r\nThat's why we've started the Bored Ape Kennel Club, and why we're offering up a dog NFT for adoption to every single member of the BAYC – for free (you only pay gas).\r\n\r\nLearn more at: http://boredapeyachtclub.com/#/kennel-club",
"externalUrl": "http://boredapeyachtclub.com/#/kennel-club",
"twitterUsername": "boredapeyc",
"discordUrl": "https://discord.gg/wjH7hGz2yS",
"lastIngestedAt": "2023-03-21T03:49:04.000Z"
}
}
}, {
"address": "0xba627f3d081cc97ac0edc40591eda7053ac63532",
"contractMetadata": {
"name": "Bored & Dangerous",
"symbol": "BOOK",
"totalSupply": "14890",
"tokenType": "ERC721",
"contractDeployer": "0xf6045e92121a4aac74320e038258e0fe0d537cb5",
"deployedBlockNumber": 15118602,
"openSea": {
"floorPrice": 0.12839,
"collectionName": "Bored & Dangerous",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gcs/files/ff62dd4e9b27dee15e7ac89307a917b5.png?w=500&auto=format",
"description": "Bored & Dangerous, almost a year in the making, is a historic moment for the NFT space. This work is the result of 3,000 members of Jenkins the Valet’s “The Writer’s Room” banding together to drive the creative direction of the work. Neil Strauss, a 10x NYT Bestseller, wrote the novel. All characters featured in the novel, in the illustrations, in the game of ‘Where’s Jenkins’ and in the acknowledgements are owned by members of the community and licensed to Tally Labs.\r\n\r\nA special thank you to MBSJQ for creating such special artwork and for Murda Beatz who produced the beats you hear as the book rotates.\r\n\r\nThis NFT may be burned for an Azur Root (a sacred item within Azurbala that can be redeemed for a PFP) or staked for membership in Hawthorn (a DAO dedicated to reimagining collective creativity).\r\n\r\nVisit www.jenkinsthevalet.com for more information and join us in creating future community-generative works.",
"externalUrl": "http://azurbala.com",
"twitterUsername": "bddeployer",
"discordUrl": "https://discord.gg/azurbala",
"lastIngestedAt": "2023-03-21T03:49:34.000Z"
}
}
}, {
"address": "0xf621b26ce64ed28f42231bcb578a8089f7958372",
"contractMetadata": {
"name": "Bored Mummy Waking Up",
"symbol": "BMWU",
"totalSupply": "8888",
"tokenType": "ERC721",
"contractDeployer": "0x3088245c03a47fa124af9990b87c9f6df9c27e67",
"deployedBlockNumber": 12981729,
"openSea": {
"floorPrice": 0.0179,
"collectionName": "Bored Mummy Waking Up",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/KbLqxFD_JsSdyMKtabR8Mf_qrinLu9EOkL4HWhQm5bsCdlf-Nh54wBxva7_gmEnoLNFxw6OZSAgVwDBnNoO97_im2VSSsqRkyr0gTQ?w=500&auto=format",
"description": "[Bored Mummy Baby](https://opensea.io/collection/bored-mummy-baby-waking-up) | [Bored Mummy Halloween Royal Rumble](https://opensea.io/collection/bored-mummy-halloween-royal-rumble) | [Bored Mummy Meet the Maker](https://opensea.io/collection/bored-mummy-meet-the-maker)\n\nBMWU (Genesis)\n\nAn incredibly active and friendly community, online games, giveaways, 3D avatars, The Sandbox Land, weekly activities and a Road Map into the future!!\n\nWelcome to Bored Mummy Waking Up! A professionally run community-driven NFT project, developing gaming and social experiences across several Metaverse lands.\n\nOur Genesis collection of NFTs include 100’s of hand-drawn traits. These anciently styled NFTs from the Divine Chronosphere will act as a protector in your wallet.\n \nNew to NFTs? Hodler? Stop by our Discord and say ‘hey’, take a run through our Cryptovoxels metaverse, then pick-up a Bored Mummy Waking Up NFT of your own!\n\nPick up an NFT from each of our collections and you’ll get on our\n\n",
"externalUrl": "https://www.boredmummywakingup.com/",
"twitterUsername": "BoredMummyWU",
"discordUrl": "https://discord.gg/boredmummywu",
"lastIngestedAt": "2023-03-21T23:08:37.000Z"
}
}
}, {
"address": "0x22c36bfdcef207f9c0cc941936eff94d4246d14a",
"contractMetadata": {
"tokenType": "ERC1155",
"contractDeployer": "0x9056d15c49b19df52ffad1e6c11627f035c0c960",
"deployedBlockNumber": 13115709,
"openSea": {
"floorPrice": 18.42,
"collectionName": "Bored Ape Chemistry Club",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gae/Mf4vImKbzrJUcj7f7RZNOl9iZSEEJgkvpiUp9ugXc9dcpxFe6fvVgxYcRmTI1PnvfL_X1bD3mH4e66j6aJhqLEYm0vvpC8Jy8XJNZOI?w=500&auto=format",
"description": "Bored Ape Chemistry Club consists of 10,000 Mutant Serums, to be airdropped to all Bored Apes. Handle with care. Instructions to follow at 6pm ET 8/28/21.",
"lastIngestedAt": "2023-03-20T06:04:13.000Z"
}
}
}, {
"address": "0x43ebbeda1ab50de58e2adbc071ab78d27864b5e4",
"contractMetadata": {
"name": "AIBoredApe",
"symbol": "AIBAPE",
"totalSupply": "11000",
"tokenType": "ERC721",
"contractDeployer": "0x1e47c8983176410f55852fe6e7aef0f0d0bafcbf",
"deployedBlockNumber": 14843698,
"openSea": {
"floorPrice": 0.021,
"collectionName": "AIPES NFT",
"safelistRequestStatus": "verified",
"imageUrl": "https://i.seadn.io/gcs/files/219eccd44085d56b9a9c822b4eae3156.jpg?w=500&auto=format",
"description": "AIPES is the culture shift bridging AI and the Blockchain. A strong and sustainable brand built through unique mechanism to strengthen the AIPES collection. AI Artworks inspired by BAYC & MAYC. Let the art do the speaking. Join the biggest AI NFT community. WE are waiting.",
"externalUrl": "https://twitter.com/AIPESnft_",
"twitterUsername": "AIPESnft_",
"discordUrl": "https://discord.gg/aipesnft",
"lastIngestedAt": "2023-03-26T05:20:57.000Z"
}
}
}, {
"address": "0xaaf30a4dbf45ae1435634b8407ddf27dae947c13",
"contractMetadata": {
"name": "BoredPepeYC",
"symbol": "BPYC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xed383b89b40908a366a76c84d46f09bffb8c639c",
"deployedBlockNumber": 15679859,
"openSea": {
"floorPrice": 0.001,
"collectionName": "BoredPepeYC",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gcs/files/bcde851a159ba45d9a2fb2a8065c6d20.gif?w=500&auto=format",
"description": "",
"externalUrl": "https://boredpepeyacht.club/",
"twitterUsername": "BoredPepeYC_NFT",
"discordUrl": "https://discord.gg/BcwQEPBKQR",
"lastIngestedAt": "2023-03-20T23:35:58.000Z"
}
}
}, {
"address": "0x8770792963e0486368ff6e5713ed1f357335cbf8",
"contractMetadata": {
"name": "Bored Oddities",
"symbol": "BRDODD",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0x916e48755e4b8f548d577aa6a82fc958d0b99821",
"deployedBlockNumber": 15145202,
"openSea": {
"floorPrice": 0.00115,
"collectionName": "Bored Oddities",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gcs/files/569fa5fbb1e674c9c2be544097b5e450.gif?w=500&auto=format",
"description": "Something odd emerged from the Swamp, raising the curiosity of an Ape living close by. He took them home, only to see them run away over night. Since then, they’ve grown eyes, mouth, arms and started wearing clothes. What the hell are they? What do they want? Ape can’t contain his curiosity and organizes an expedition to capture all 10.000 of them.",
"externalUrl": "https://www.boredoddities.xyz/",
"twitterUsername": "boredoddities",
"lastIngestedAt": "2023-03-20T06:25:47.000Z"
}
}
}, {
"address": "0x1eb7382976077f92cf25c27cc3b900a274fd0012",
"contractMetadata": {
"name": "Bored Ape Comic",
"symbol": "BAC",
"totalSupply": "9999",
"tokenType": "ERC721",
"contractDeployer": "0x1284552a1f9b75f9a119cd9cfccb1eab208537b6",
"deployedBlockNumber": 12864518,
"openSea": {
"floorPrice": 0.004,
"collectionName": "Bored Ape Comic",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gae/S7Z1XXStTUpCQkla-tmXLv8jwJPlWLMeUL_FtjCWS5Vjwl5C7xaUb0K3HoMmnnBulFpsjXFSjtK8YXURMtUYY3e6hJV27lVatlpC3g?w=500&auto=format",
"description": "Bored Ape Comic #2 is out now. Issues consists of 10,000 NFTs & features a cast of Bored Apes. Visit https://boredapecomic.com for more details.",
"externalUrl": "https://boredapecomic.com/",
"twitterUsername": "boredApeCOMIC",
"discordUrl": "https://discord.gg/A3B7unTWxG",
"lastIngestedAt": "2023-03-20T02:39:57.000Z"
}
}
}, {
"address": "0x532de79cab5348d07c25511698688c2d9805b929",
"contractMetadata": {
"name": "boredassgoblins",
"symbol": "BAG",
"totalSupply": "10018",
"tokenType": "ERC721",
"contractDeployer": "0x0c10c45c64d69ffc2067b2545eb99976785687a0",
"deployedBlockNumber": 14907631,
"openSea": {
"floorPrice": 9.0E-4,
"collectionName": "boredassgoblins",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gae/_aGEv4qZuGOsSyiaOWsg8suTiSdbRYIIvcBWxtx0PMc0PejgbfxMosmoH_2tpxm_bs_oIb8dTpIT9sr0-yv599HF4KJfdzA7PSVwuQ?w=500&auto=format",
"description": "gob bhao GU gu guh bored ghub ghu bAAAAAAAAA bhrod guh huooob",
"externalUrl": "https://boredassgoblins.wtf/",
"twitterUsername": "boredassgoblins",
"lastIngestedAt": "2023-03-14T07:18:03.000Z"
}
}
}, {
"address": "0x5f1cbe84d44e292fe3eae51b87f34bbdc8f04fc8",
"contractMetadata": {
"name": "Bored Bits Yacht Club",
"symbol": "BBYC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xefffc114d67d1758f2d49c8c589fe96c4ebc6912",
"deployedBlockNumber": 15020235,
"openSea": {
"floorPrice": 0.003,
"collectionName": "BBYC Bored Bits Yacht Club",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gcs/files/46238735831a3e1a64a7cbd9f3b07fa7.png?w=500&auto=format",
"description": "???? APES STRONG ????\r\n\r\n10.000 BAYC TURNED IN PIXEL ART.",
"externalUrl": "https://www.boredbitsyachtclub.com/",
"twitterUsername": "BoredBitsNFT",
"lastIngestedAt": "2023-03-17T19:24:04.000Z"
}
}
}, {
"address": "0x65784d6f23de30a17122e96c0f0986c378ed6947",
"contractMetadata": {
"name": "Bored Ape Yoga Club",
"symbol": "BAYC",
"tokenType": "ERC721",
"contractDeployer": "0x5bddef8ad4599a0ec9e4b0f2f940edbca61a1bdc",
"deployedBlockNumber": 15423809,
"openSea": {
"floorPrice": 0.0069,
"collectionName": "Bored Ape Yoga Club",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gcs/files/dfaa6b5e403076849c43a2a8784697ca.png?w=500&auto=format",
"description": "Bored Ape Yoga Club is a 10,000-piece NFT collection on the Ethereum blockchain that began as parody in the form of five memes drawn by the artist, first of BAYC #2613 and then of the Yuga Labs founders’ BAYCs assuming the now infamous ape yoga position.\r\n\r\nAs the images quickly spread throughout the crypto community on Twitter, demand for a complete 10k NFT collection of bored apes practicing throat yoga grew organically to a point that the artist was compelled to capture this sentiment permanently on-chain in full parity with the Bored Ape Yacht Club NFTs.",
"externalUrl": "http://boredapeyogaclub.com",
"twitterUsername": "enjoyoor",
"discordUrl": "https://discord.gg/threeforall",
"lastIngestedAt": "2023-03-21T02:48:05.000Z"
}
}
}, {
"address": "0x8c4cb0c471ce9192d33b2929d186adff4ca1dcf8",
"contractMetadata": {
"name": "Bored.Ai MemberChip",
"symbol": "MemberChip",
"totalSupply": "9317",
"tokenType": "ERC721",
"contractDeployer": "0x90e891dc7b72a06e0596f444308873ca4267dc47",
"deployedBlockNumber": 14351484,
"openSea": {
"floorPrice": 0.007,
"collectionName": "Bored.Ai MemberChip",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gae/2NaECQ6t2NxgNX2LFAN6l8ELPGYUQ14nCgc-8fIzzZLkThzGoHsT-vO32YhxgujlF0ZJxd9helW1hr77y4rNHow6B6rT8GzT5riDtQ?w=500&auto=format",
"description": "The Bored.Ai Collective is dedicated to giving its members creative superpowers, beginning with a collection of 10,000 MemberChips - NFTs which grant access to cutting-edge artificial intelligence (Ai). Your MemberChip NFT doubles as your ticket to the Bored.Ai Collective, and gets you exclusive access to members-only spaces and perks, and NFT drops - the first of which is the debut [Text2Art collection](https://opensea.io/collection/bored-ai-text2art) | Visit our [website](https://bored.ai) for more information | [Bored.Ai Disk @ OpenSea](https://opensea.io/collection/bored-ai-disk)",
"externalUrl": "https://bored.ai",
"lastIngestedAt": "2023-03-20T12:37:08.000Z"
}
}
}, {
"address": "0xc06eb1bf19905653ccef41506b5cb93951cc58ba",
"contractMetadata": {
"name": "Bored.Ai Disk",
"symbol": "Disk",
"tokenType": "ERC1155",
"contractDeployer": "0x90e891dc7b72a06e0596f444308873ca4267dc47",
"deployedBlockNumber": 14351488,
"openSea": {
"floorPrice": 0.01,
"collectionName": "Bored.Ai Disk",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gae/K0Jy3zEWxkIIlOMxbAwdtEyiW1xuXwzEzubPrBjBRtEfxc_00vbEfKPx3HBlx96wlhDqN6H41debJkrLHjY-BpZxK6OKMyRqnPtQ?w=500&auto=format",
"description": "The Text2Art Floppy Disk Collection is the first drop for Bored.Ai Collective members - a collection of 10,000 NFTs which allow you to easily mint Ai-generated art created from your own words - machine drawn by artistic superpowers | Visit our [website](https://bored.ai) for more information | [Bored.Ai MemberChips @ OpenSea](https://opensea.io/collection/bored-ai-memberchip) | [Text2Art collection @ OpenSea](https://opensea.io/collection/bored-ai-text2art)",
"externalUrl": "https://bored.ai",
"lastIngestedAt": "2023-03-21T05:17:26.000Z"
}
}
}, {
"address": "0xd16bdccae06dfd701a59103446a17e22e9ca0ef0",
"contractMetadata": {
"name": "Basic Bored Ape Club",
"symbol": "BBAC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0x7114d6f07b4d06fd36027c51c9b5095086f4d524",
"deployedBlockNumber": 13821429,
"openSea": {
"floorPrice": 0.004,
"collectionName": "Basic Bored Ape Club",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gae/8ZggCNMQiAoVbPKc46to1Q0eTKwfiQCsAUUczltGLmBX-O33-_ke_lWRbL6o3RqfCbq1g1Yk-3TR_KtI_4W5Af_RKwD1Kg_lCLeC?w=500&auto=format",
"description": "Basic Bored Ape Club / BBAC\n\nNFT collection inspired by an existing and truly admired collection,\nbut completely independent and unaffiliated.",
"twitterUsername": "BasicBoredApe",
"discordUrl": "https://discord.gg/NQuAZvvDwz",
"lastIngestedAt": "2023-03-21T11:10:40.000Z"
}
}
}, {
"address": "0xe3b5da60ee5f7b4b6b1ed418c3f09ded9ca2f95c",
"contractMetadata": {
"name": "Bored Ape Seeking Yacht Club Issue #0",
"symbol": "BASYC-0",
"totalSupply": "5636",
"tokenType": "ERC721",
"contractDeployer": "0x1ddd45db051c56af82cd926577d9b39ca21ac167",
"deployedBlockNumber": 13023356,
"openSea": {
"floorPrice": 0.01,
"collectionName": "Bored Ape Seeks Yacht Club #0",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gae/jo2dgEbi-mgUuJyVvsEHr5dSGf8LaBcjLWuHWoAxeZ0KGAvMrYToT1-W6CBkltBfZN8pdfSQ1VzHhbcr_dFFbjcBWRCyVyqSKqqJqg?w=500&auto=format",
"description": "The OG Collection for the Origin Story of American Ape (BAYC #5636). This series documents the journey of the American Ape as he searches for the Bored Ape Yacht Club. Accept no substitutes, but the series continues in a new contract [HERE] (https://opensea.io/collection/american-ape-digital-comics).\n\nThis ERC-721 token will be required to claim a physical graphic novel when the series goes to print. Holders of 20 or more will occasionally have the ability to burn them for a Custom Cover, when the waitlist opens in the Myth Division Discord.",
"externalUrl": "http://boredapeseeksyachtclub.com",
"twitterUsername": "mythdivision",
"discordUrl": "https://discord.gg/hNG2RStGK9",
"lastIngestedAt": "2023-03-21T20:19:41.000Z"
}
}
}, {
"address": "0x5d95c4c73e152727750df27ff7da1c7169430dd6",
"contractMetadata": {
"name": "Bored Gorilla Yacht Club",
"symbol": "BGYC",
"totalSupply": "10000",
"tokenType": "ERC721",
"contractDeployer": "0xe421dfad61ab530948821d052d405c007e051862",
"deployedBlockNumber": 15491313,
"openSea": {
"floorPrice": 0.009,
"collectionName": "BGYC",
"safelistRequestStatus": "approved",
"imageUrl": "https://i.seadn.io/gcs/files/1c6d3c3c829315d38c2b2068a52f5d02.jpg?w=500&auto=format",
"description": "10,000 Bored Gorillas Roaming around the blockchain jungle hoping to find out how they ended up on this unknown island.\n\n2.5% of the total creator fee goes to a multisign community wallet driven by the BGYC community itself. The community is on a daily basis creating its future together with the backend assist of the projects founders.",
"externalUrl": "https://www.bgyc.art/",
"twitterUsername": "