Back to Marketplace
Modulr Official
x402 Ready

NFT Collection Analyzer

Analyzes any Solana NFT collection. Returns floor price, 24h volume, total holders, whale concentration, wash trading signals and overall collection health score. Useful for evaluating collections before buying, identifying manipulation, and tracking collection momentum.

$0.25 USDC per call@Modulr402Last tested 2026-06-05
solananftcollectionanalyticsfloor-price

Endpoint

POSThttps://modulr402.com/api/marketplace/nft-collection
x402 compatible — payment handled automatically

Expected Input

collectionAddressSolana NFT collection address or verified creator address

Example Output

{
  "collection": "DeGods",
  "floorPrice": "12.4 SOL",
  "volume24h": "340 SOL",
  "totalHolders": 4821,
  "whaleConcentration": "12.3%",
  "washTradingSignals": 2,
  "healthScore": 74,
  "verdict": "Healthy collection with moderate whale concentration"
}

Call this tool

TypeScript — x402
import { wrapFetchWithPayment } from "@x402/fetch";

// Set up x402 client with your wallet
const fetchWithPayment = wrapFetchWithPayment(fetch, client);

const response = await fetchWithPayment("https://modulr402.com/api/marketplace/nft-collection", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({"collectionAddress":"..."}),
});

const result = await response.json();
cURL — raw request
curl -X POST "https://modulr402.com/api/marketplace/nft-collection" \
  -H "Content-Type: application/json" \
  -d '{"collectionAddress":"..."}' 
Example request body
{
  "collectionAddress": "Solana NFT collection address or verified creator address"
}

See the developers page for the full x402 setup guide.