Global stats
Public, unauthenticated service totals for the Hep.gg Music API: cached tracks, downloads, artwork, and per-network media counts.
Global stats
A public, unauthenticated snapshot of the Music service: how many tracks and media items are cached, total bytes stored, and per-network download counts. Useful for a status widget or a "tracks served" counter.
Fetch stats
GET
https://music.jakeypri.me/PublicPublic service totals. No key required.
Response
200 with a JSON object. The stats block covers the high-quality library, cover artwork, and the unified downloader broken out per network.
{
"status": "online",
"api": "MusicPrime API v1.0",
"stats": {
"totalSongsCached": 12840,
"totalSongsSizeFormatted": "61.2 GB",
"totalHQDownloads": 9321,
"libraryDownloads": 41002,
"totalArtworkCached": 11900,
"totalArtworkViews": 230114,
"networks": {
"youtube": { "cached": 5120, "sizeFormatted": "88.4 GB", "downloads": 73022 },
"soundcloud": { "cached": 940, "sizeFormatted": "9.1 GB", "downloads": 8110 },
"instagram": { "cached": 410, "sizeFormatted": "3.2 GB", "downloads": 2901 },
"tiktok": { "cached": 1220, "sizeFormatted": "7.8 GB", "downloads": 15402 },
"facebook": { "cached": 130, "sizeFormatted": "1.1 GB", "downloads": 640 }
},
"totalUserDownloads": 140177,
"totalSizeFormatted": "171.0 GB"
}
}Selected fields
totalSongsCachedintegeroptional
Tracks cached in the high-quality library.
libraryDownloadsintegeroptional
Total library (ISRC) downloads served.
totalArtworkCachedintegeroptional
Cover images cached.
networksobjectoptional
Per-network (
youtube, soundcloud, instagram, tiktok, facebook) cache count, stored bytes, and user download count for the unified downloader.totalUserDownloadsintegeroptional
All user downloads across every network plus the library.
totalSizeFormattedstringoptional
Human-readable total bytes stored across the library, artwork, and media cache.