Collection washtrading index

Washtrading score between 0 and 100 for this collection using Hello Moon's algorithm

Examples

Get a score for a specific collection

const axios = require("axios");

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

async function getWashtradingIndex() {
    const { data } = await axios.post(
        url,
        {
			"helloMoonCollectionId": "040de757c0d2b75dcee999ddd47689c4"
		},
        {
            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!