NFT Cumulative Owners Over Time

NOTE: This endpoint is only callable by API keys in the following tiers:

  • Business
  • Developer
  • Enterprise
  • PremiumSharedRpc
  • StarterSharedRpc
  • UltimateSharedRpc
Shows the number of cumulative NFT owners among all collections on Solana over time.
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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);
}
Body Params

body

date-time

Day in UTC string
optional field

number
1 to 1000

The number of results to return per page
optional field

number
≥ 1

The page number to return
optional field

string

The pagination token to use to keep your position in the results
optional field

Response

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json