post https://rest-api.hellomoon.io/v0/token/creation
NOTE: This endpoint is only callable by API keys in the following tiers:
- Business
 - Developer
 - Enterprise
 - PremiumSharedRpc
 - StarterSharedRpc
 - UltimateSharedRpc
 
Transaction level information on creation of tokens
Examples
Get information of a mint
const axios = require("axios");
const url = "https://rest-api.hellomoon.io/v0/token/creation";
async function getMintInfo() {
    const { data } = await axios.post(
        url,
        {
			"mint": "Cv5gsTFoPtYnvKJeP8iTsvfx7yUiQEpkCTmsM5R9r9ig"
		},
        {
            headers: {
                Accept: "application/json",
                "Content-Type": "application/json",
                Authorization: "Bearer <your_token>",
            },
        }
    );
    console.log(data);
}