The Engine Behind
Tuneify.NET
A blazingly fast, lightweight PHP backend powering music streaming, catalog search, user authentication, and real-time support.
MySQL Core
High-performance relational database mapping users, verification statuses, tracks, albums, and playlists.
yt-dlp Engine
Direct proxy audio streaming, turning YouTube's immense library into a seamless, ad-free listening experience.
Secure Auth
Cross-domain strict secure cookies, bcrypt password hashing, and seamless Google OAuth integration.
Core Endpoints
/get_songs.php
Fetch the main library. Supports ?trending=1, ?albums=1, ?mine=1, and ?q=query parameters.
/upload_release.php
Accepts multipart/form-data (audio file, cover art, metadata). Tracks enter a 15-minute pending state before auto-approval across the CDN.
/youtube_search.php?q=...
Scrapes the global catalog on-the-fly and returns normalized track objects ready for Tuneify's stream proxy.
/stream.php?id={id}
Direct audio proxy endpoint. It reads database files or fetches yt-dlp buffers seamlessly depending on track source.