Returns an NFT collection with pool stats for a given AMM NFT marketplace.
Endpoint: getNftPoolCollection
Method: POST
Arguments
Response
Name | Type | Description |
---|---|---|
balanceNBT | String! | The total liquidity of the collection in the network's base token. |
collectionAddress | String! | The contract address of the NFT collection. |
collectionId | String! | The ID of the NFT collection (collectionAddress :networkId ). |
collectionSymbol | String! | The symbol of the NFT collection. |
exchangeAddress | String! | The contract address of the NFT AMM marketplace. |
exchangeId | String! | The ID of the exchange (exchangeAddress :networkId ). |
floorNBT | String | The lowest price at which any of the NFT collection's pools are willing to sell an NFT in the network's base token. |
image | String | An image associated with the NFT collection. |
name | String | The name of the NFT collection. |
networkId | Int! | The network ID the NFT collection is deployed on. |
nftBalanceV2 | String! | The current number of NFTs in all the NFT collection's pools. |
nftVolumeAllTimeV2 | String | The total number of NFTs bought and sold over the collection's lifetime. |
offerNBT | String | The highest price at which any of the NFT collection's pools are willing to buy an NFT in the network's base token. |
poolFeesNBTAll | String | The sum of pool fees generated by the collection in the network's base token over the collection's lifetime. |
poolFeesUSDAll | String | The sum of pool fees generated by the collection in USD over the collection's lifetime. |
protocolFeesNBTAll | String | The sum of protocol fees generated by the collection in the network's base token over the collection's lifetime. |
protocolFeesUSDAll | String | The sum of protocol fees generated by the collection in USD over the collection's lifetime. |
royaltiesNBTAllEstimate | String | As estimated sum in the network's base token of the collection's royalties paid to creators by pool swaps over the collection's lifetime. |
royaltiesUSDAllEstimate | String | An estimated sum in USD of the collection's royalties paid to creators by pool swaps over the collection's lifetime. |
volumeAllTimeNBT | String | The total volume of the collection in the network's base token over the collection's lifetime. |
volumeAllTimeUSD | String | The total volume of the collection in USD over the collection's lifetime. |
Example
Find Azuki Collection
Use this query to get SudoSwap's Azuki stats and media.
{
getNftPoolCollection(
collectionAddress: "0xed5af388653567af2f388e6224dc7c4b3241c544"
exchangeAddress: "0xb16c1342E617A5B6E4b631EB114483FDB289c0A4"
networkId: 1
) {
balanceNBT
collectionAddress
collectionId
exchangeAddress
exchangeId
floorNBT
media {
image
thumbLg
thumbSm
}
name
networkId
nftBalance
nftVolumeAllTime
offerNBT
volumeAllTimeNBT
}
}
{
"data": {
"getNftPoolCollection": {
"balanceNBT": "99049545153563425190",
"collectionAddress": "0xed5af388653567af2f388e6224dc7c4b3241c544",
"collectionId": "0xed5af388653567af2f388e6224dc7c4b3241c544:1",
"exchangeAddress": "0xb16c1342e617a5b6e4b631eb114483fdb289c0a4",
"exchangeId": "0xb16c1342e617a5b6e4b631eb114483fdb289c0a4:1",
"floorNBT": "9165000000000000000",
"media": {
"image": "https://crypto-nft-data-staging.s3.us-west-2.amazonaws.com/image/0xed5af388653567af2f388e6224dc7c4b3241c544:1000:1.webp",
"thumbLg": "https://crypto-nft-data-staging.s3.us-west-2.amazonaws.com/thumbLg/0xed5af388653567af2f388e6224dc7c4b3241c544:1000:1.webp",
"thumbSm": "https://crypto-nft-data-staging.s3.us-west-2.amazonaws.com/thumbSm/0xed5af388653567af2f388e6224dc7c4b3241c544:1000:1.webp"
},
"name": "Azuki",
"networkId": 1,
"nftBalance": 18,
"nftVolumeAllTime": 29,
"offerNBT": "9165000000000000000",
"volumeAllTimeNBT": "263665331514991482719"
}
}
}
Explore
Ask questions, share what you're working on and request new features 👬👭