Marketplace Sales Over Time

Daily sales for NFT markets

Examples

Track daily sales for a specific market

const axios = require("axios");

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

async function getDailySales() {
    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!