NFT owners of an art market
All NFT owners for an art market
GET https://api.1155.tech/public/api/v1/art-market/nft-owners
This is a paginated API and accepts skip and limit as part of the query-string.
Query Parameters
Name
Type
Description
marketId*
Number
Numeric marketId of an art market goes here. For e.g. 13
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
List of keyholders with their balances returned
[
{
"user_address": "0xf7562596ef09da2443df68b4d1a8d47e2ee87021",
"balance": 1
},
{
"user_address": "0x95aa6cf80aa61c34332168bb8330c065ed29ce97",
"balance": 1
},
{
"user_address": "0x7ba9871362a718cd44168bd48be56e5c23c892ae",
"balance": 1
}
]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/art-market/nft-owners?marketId=1' \
--header 'API_KEY: YOUR_API_KEY_HERE' \
--data-raw ''HTTP
GET /public/api/v1/art-market/nft-owners?marketId=1 HTTP/1.1
Host: api.1155.tech
API_KEY: YOUR_API_KEY_HERELast updated
Was this helpful?