NFTs owned by wallet address for an artist
Count of NFTs owned by a wallet address for an artist across all published markets
GET https://api.1155.tech/public/api/v1/artist/get-wallet-nfts-owned
This is a paginated API and accepts skip and limit as part of the query-string.
Query Parameters
Name
Type
Description
artistWallet*
String
Creator wallet address goes here. For e.g. 0x29d4b2b80a8de138d8dfdf415666501d0278aedd
skip
Number
Number of results to skip before returning items. Used to define pagination in your request.
limit
Number
Number of items to return per page e.g. 10
userWallet*
String
NFT owner wallet address goes here. For e.g.
0xe940fcf8195bee37cf5a5a72f79e85280b28c5a9
List of key balances returned
[
{
"balance": 1, \\ nft balance for this specific market
"nfts": {
"id": "1", \\ market id
"name": "Nouns Duck", \\ market name
"uri": "https://arweave.net/ZiuVsralyJBekZLnZ4U55nPuQZebNeMOgwniOTsTfRI",
"supply": 527
}
}
]Take a look at how you might want to pass on the API KEY via HTTP or curl
curl --location --request GET 'https://api.1155.tech/public/api/v1/artist/get-wallet-nfts-owned?artistWallet=0x29d4b2b80a8de138d8dfdf415666501d0278aedd&userWallet=0xe940fcf8195bee37cf5a5a72f79e85280b28c5a9' \
--header 'API_KEY: YOUR_API_KEY_HERE' \
--data-raw ''HTTP
GET /public/api/v1/artist/get-wallet-nfts-owned?artistWallet=0x29d4b2b80a8de138d8dfdf415666501d0278aed&userWallet=0xe940fcf8195bee37cf5a5a72f79e85280b28c5a9 HTTP/1.1
Host: api.1155.tech
API_KEY: YOUR_API_KEY_HEREPreviousKeys held by wallet address for an artistNextNFTs & Keys count by wallet address for an art market
Last updated
Was this helpful?