Track New Key Holders
Keep track of the most recent key holders.
https://api.newbitcoincity.com/api/nbc-keys/tokens Parameters
Name
Value
Required
Description
Sample code for getting data from this API
const { data } = await axios.get("https://api.newbitcoincity.com/api/nbc-keys/tokens?network=nos&page=1
&limit=30&key_type=1&side=0&followers=0,200000&price_usd=0,1000&sort_col=k.created_at
&sort_type=0&holder=0&price=0,1000");
let listResults = []
for (const user of data.result) {
listResults.push({ id: user["owner"],
twitterUsername:user["user_twitter_username"],
address: user["address"],
twitterPfpUrl:user["user_twitter_avatar"],
supply:user["total_supply_number"],
price: user["price"],
usdPrice: user["usd_price"],
})
}Last updated