Comprehensive REST API for JUNKCOIN blockchain statistics, supply analysis, and halving schedules. Real-time data with custom milestone projections and complete halving information.
Live blockchain statistics including current supply, block information, network difficulty, and hashrate.
Dynamic milestone projections for any custom timeframe from days to years.
Complete halving schedule with countdown timers and UTC timestamps.
curl -X GET "https://supply.junkcoinjkc.com/api/junkcoin-stats"curl -X GET "https://supply.junkcoinjkc.com/api/junkcoin-comprehensive?timeframes=10d,1m,1y"// Get new supply in 1 year
const response = await fetch('https://supply.junkcoinjkc.com/api/junkcoin-supply-milestone?timeframes=1y');
const data = await response.json();
console.log(`New supply in 1 year: ${data.milestones[0].newSupply.toLocaleString()} JKC`);
// Get next halving info
const halvingResponse = await fetch('https://supply.junkcoinjkc.com/api/junkcoin-halving');
const halvingData = await halvingResponse.json();
console.log(`Next halving in ${halvingData.nextHalving.daysRemaining} days`);curl -X GET "https://supply.junkcoinjkc.com/api/junkcoin-supply-milestone?timeframes=1y"curl -X GET "https://supply.junkcoinjkc.com/api/junkcoin-halving"/api/junkcoin-statsBasic JUNKCOIN blockchain statistics
/api/junkcoin-stats/formattedHuman-readable formatted statistics
/api/junkcoin-supply-milestoneSupply projections and new supply calculations for custom timeframes
/api/junkcoin-halvingComplete halving schedule with current status and emission rates
/api/junkcoin-comprehensiveComprehensive analytics with custom timeframes
/api/junkcoin-comprehensive/formattedFormatted comprehensive analytics
/api/test-statsAPI testing and validation endpoint
/api/statusAPI service status and performance metrics
The JUNKCOIN API is free to use and requires no authentication. Start building with real-time blockchain data in minutes.
Base URL: https://supply.junkcoinjkc.com