post https://rest-api.hellomoon.io/v0/nft/collection/ownership/cumulative
Shows the number of cumulative NFT owners among all collections on Solana over time.
Examples
Get total number of NFT owners on Solana on a specific day
const axios = require("axios");
const url = "https://rest-api.hellomoon.io/v0/nft/collection/ownership/cumulative";
async function getOwnersForDay() {
const { data } = await axios.post(
url,
{
"day": "2022-11-22T00:00:00.000Z"
},
{
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: "Bearer <your_token>",
},
}
);
console.log(data);
}