Get all Minted NFT details in a smart contract
Details of all the created NFT can be found using this method. The weightage for this API is 5.
API Specification
Get all Minted NFT details.
POST
https://api.krypcore.com/api/v0/easy-nft/nft-list
Created NFT details can be found under the given instance.
Headers
Name
Type
Description
Authorization*
String
User Auth Key obtained from Dash
DappId
String
DappId
Request Body
Name
Type
Description
page
Number
Details of minted NFT to be retrieved for the given page No
contractAddress*
String
contractAddress is the NFT smart contract address
pageSize
Number
No of minted NFT details to be displayed per page
{
"Data": [
{
"_id": "collectionName",
"docs": [
{
"__v": 0,
"_id": "650ae5c9052f82040625e8b0",
"attributes": "",
"contractAddress": "0x06Da2002a7E29fDd0cef326BC0febd36f48962aA",
"createdAt": "2023-09-20T12:30:01.707Z",
"createdBy": "DEV_KRYP_11_20230919",
"custodialWalletAccessToken": "d263d546-ccc2-4676-9691-d28c3f836822",
"description": "this is krypc logo",
"easyNftCollection": "650ac47da42a151ae936d7ee",
"erc": "ERC721",
"image": "https://ipfs-gateway.node.krypcore.io/api/v0/ipfs/ipfs/QmZDQ2wgjvzTFXJ1j6kgrfq4Eys1tcvaCtnjPgUtvyMiNN?apiKey=ac2d904a-cad4-425b-a2d7-3a4a8d2b64c6&token=34bc1382-33aa-4306-a331-db5029e8dcee",
"name": "krypc1234",
"owner": "0x588BeE528b93357B4d731CE817C47F4BFbc81B22",
"subscriptionId": "9690608060",
"tokenId": "3",
"txnHash": "0xce38835b4a9461d46a7c3dac16d0728aa295efc5f9e8416393ddbd6998be0ce4",
"updatedAt": "2023-09-20T12:30:01.707Z",
"walletAddress": ""
},
{
"__v": 0,
"_id": "650adf7d052f82040625e7f7",
"attributes": "",
"contractAddress": "0x06Da2002a7E29fDd0cef326BC0febd36f48962aA",
"createdAt": "2023-09-20T12:03:09.823Z",
"createdBy": "DEV_KRYP_11_20230919",
"custodialWalletAccessToken": "d263d546-ccc2-4676-9691-d28c3f836822",
"description": "this is krypc logo",
"easyNftCollection": "650ac47da42a151ae936d7ee",
"erc": "ERC721",
"image": "https://ipfs-gateway.node.krypcore.io/api/v0/ipfs/ipfs/QmPherocXDSKLms1tz1Un6qcyyJ56TyKRkhDKjHjEHiAsP?apiKey=ac2d904a-cad4-425b-a2d7-3a4a8d2b64c6&token=34bc1382-33aa-4306-a331-db5029e8dcee",
"name": "krypc123",
"owner": "0x588BeE528b93357B4d731CE817C47F4BFbc81B22",
"subscriptionId": "9690608060",
"tokenId": "1",
"txnHash": "0x5edab1b83168b49e3cd69d1db27d2152dd4020cadcacfe1a5cd0f781eb75fbad",
"updatedAt": "2023-09-20T12:03:09.823Z",
"walletAddress": ""
}
],
"totalCount": 2
}
],
"Message": "Ok",
"Status": "SUCCESS"
}
Take a look at how you might call this method using our official libraries, or via curl
:
curl --location --request POST 'https://api.krypcore.com/api/v0/easy-nft/nft-list' \
--header 'Authorization: xxxxxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"contractAddress": "0x06Da2002a7E29fDd0cef326BC0febd36f48962aA",
"page": 0,
"pageSize": 10
}'
Last updated
Was this helpful?