Search Key Holders
Look for key holders' information.
https://api.newbitcoincity.com/api/nbc-keys/tokensParameters
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=10&key_type=1&followers=0,200000&price=0,50&red_flags=0,6.9&sort_col=buy_price&sort_type=0&holder=0&re_flags=0,10&search="+search);
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