NFT Active Listings (Alpha)
This endpoint is in Alpha — we do not recommend using it in a mission-critical setting at the moment.
Known limitations:
- 1.OpenSea may have stale listings because their listing expiry mechanism is off-chain.
- 2.Escrow-less marketplaces (Hyperspace, Coral Cube & OpenSea) may have stale listings because the listings can be deactivated without a sale or delist transaction. Although we deactivate the listing whenever we detect an activity that invalidates the listing (e.g. listing on MagicEden), some edge cases may still exist.
Query for active NFT listings across marketplaces and NFT collections.
Oops, something is missing.
We could not find the original source to display this content.
const axios = require('axios')
const url = `https://api.helius.xyz/v1/active-listings?api-key=<api_key>`
const getActiveListings = async () => {
const { data } = await axios.post(url, {
"query": {
// ABC collection
"firstVerifiedCreators": ["GVkb5GuwGKydA4xXLT9PNpx63h7bhFNrDLQSxi6j5NuF"]
}
});
console.log("Active listings: ", data.result);
};
getActiveListings();
const axios = require('axios')
const url = `https://api.helius.xyz/v1/active-listings?api-key=<api_key>`
const getActiveListings = async () => {
const { data } = await axios.post(url, {
"query": {
"marketplaces": ["SOLANART"]
}
});
console.log("Active listings: ", data.result);
};
getActiveListings();
Last modified 1mo ago