Marketplace Stats

Descriptive statistics for marketplace activity amongst different granularities including
- volume
- number of buyers
- number of sellers
- number of transactions

Examples

Get activity for a specific marketplace

const axios = require("axios");

const url = "https://rest-api.hellomoon.io/v0/nft/market-stats";

async function undefined() {
    const { data } = await axios.post(
        url,
        {
			"market": "ME_V2"
		},
        {
            headers: {
                Accept: "application/json",
                "Content-Type": "application/json",
                Authorization: "Bearer <your_token>",
            },
        }
    );

    console.log(data);
}
Language
Authorization
Bearer
JWT
Click Try It! to start a request and see the response here!