Making an API call (GET Methods)
How to get started using 1155Tech API to build with your own experiences
Get your API Key
Make your request
To make a request, send your API_KEY in the request header alongside required query parameters to the API endpoint you are using. On success, the API will return a parseable response.
Key Holders
GET http://api.1155.tech/public/api/v1/artist/key-holders
Get all Keyholders across all art markets created by the artist. This is a paginated API and accepts skip and limit as part of the query-string.
Query Parameters
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
List of keyholders with their balances returned
[
{
"user_address": "0xe940fcf8195bee37cf5a5a72f79e85280b28c5a9",
"balance": 648
},
{
"user_address": "0xdcd0e69d3cde634d482e4be9cf93f5bee7bef158",
"balance": 29
},
{
"user_address": "0xf7562596ef09da2443df68b4d1a8d47e2ee87021",
"balance": 27
},
{
"user_address": "0xbef27f5891abebf9ca9a609a35007e9abd8a464a",
"balance": 17
},
{
"user_address": "0xc578958dd1880cf00bffbb7feb9c28cbbbcad3bf",
"balance": 5
},
{
"user_address": "0xf5c0b0421a830169f3c2e71540b23f54c2985afe",
"balance": 4
},
{
"user_address": "0x7ba9871362a718cd4411d0d48be56e5c23c892ae",
"balance": 4
},
{
"user_address": "0xff6e18566c66855719595d1dafe706e238c32e5a",
"balance": 1
},
{
"user_address": "0x6964c93cc184daf145ac9ab36df806170b83f99c",
"balance": 1
}
]
Take a look at how you might want to pass on the API KEY via HTTP or curl
Last updated
Was this helpful?