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-stats
Basic JUNKCOIN blockchain statistics
/api/junkcoin-stats/formatted
Human-readable formatted statistics
/api/junkcoin-supply-milestone
Supply projections and new supply calculations for custom timeframes
/api/junkcoin-halving
Complete halving schedule with current status and emission rates
/api/junkcoin-comprehensive
Comprehensive analytics with custom timeframes
/api/junkcoin-comprehensive/formatted
Formatted comprehensive analytics
/api/test-stats
API testing and validation endpoint
/api/status
API 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