post https://rest-api.hellomoon.io/v0/nft/listing-status
Track and verify the NFT Listing Status by the NFT collection, NFT marketplace, or a single NFT.
If the Listing Status is true, buyers can purchase the NFT at the asking price.
If the Listing Status is false, buyers have to place a bid on a marketplace for the NFT.
Our supported NFT marketplaces are:
SMB (Solana Monkey Business)
Solanart
MEv1 (Magic Eden v1)
MEv2 (Magic Eden v2)
TensorSwap (Tensor)
ExchangeArt (Exchange Art)
Examples
Check listing status of a mint
const axios = require("axios");
const url = "https://rest-api.hellomoon.io/v0/nft/listing-status";
async function getNftListingStatus() {
const { data } = await axios.post(
url,
{
"nftMint": "12DLpsFdqLXpjYhFGjFwnKQW6ystUGsf1p1niiSQyXWQ"
},
{
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: "Bearer <your_token>",
},
}
);
console.log(data);
}