In today’s streaming era, finding music is easy. But finding music that truly connects—to your mood, your moment, your story—is a whole different challenge.
SpotOn solves that.
It blends powerful AI with Spotify’s vast catalog to give you not just recommendations, but relevant, emotionally resonant discoveries. Whether you're exploring genres, curating a perfect playlist, or just chasing a vibe, SpotOn helps you go deeper into music that gets you.
No more endless skipping. No more generic suggestions. Just music that feels SpotOn.
- 📲 Login with your Spoify Account - Use your own Spotify account for personalized search experience and album saving
- 🔍 Search Songs – Enter a song name in the search bar and fetch results from Spotify.
- 📄 Song Details Page – Click on a song to view its details, including:
- Song name
- Album
- Genre
- Cover Art
- Artist
- Song Credits
- 💾 Save to Album – Save your favorite songs to a personal album on your own Spotify account. Great for revisiting tracks or building themed playlists.
- 🤖 AI-Generated Summaries – SpotOn uses Google Gemini to generate insightful song descriptions tailored from metadata—offering context, themes, and mood that help you connect with the music on a deeper level.
- 🧭 Navigation – Easily return to the homepage for further searches.
- React.js
- React Router
- CSS Modules
- Node.js
- Spotify Web API
- Google Gemini API
- React Hooks:
useState
,useEffect
,useRef
The backend acts as a secure middleware between the frontend and third-party APIs. It handles authentication, token management, and Gemini AI integration.
- 🎫 Spotify Token Handling – Exchanges client credentials for access tokens.
- 🔐 API Security – Hides sensitive API keys and secrets.
- 🤖 Gemini Summary Endpoint – Receives song metadata and returns AI-generated summaries.
- 🔗 CORS & Routing – Enables communication between client and server.
git clone https://github.com/yourusername/spoton.git
cd SpotOn
npm install
Create a .env file in the directory:
REACT_APP_SPOTIFY_CLIENT_ID=your_spotify_client_id
REACT_APP_SPOTIFY_CLIENT_SECRET=your_spotify_client_secret
REACT_APP_GEMINI_API_KEY=your_gemini_api_key
npm start
How It Works
- Search for a song → Frontend sends request to backend, which queries Spotify API.
- Click on a song → Redirects to a detailed page showing song info.
- AI-generated summary → Backend sends song metadata to Gemini and returns a tailored description.
- Save to album → Users can save favorite songs locally (database optional).
Future Improvements
🔊 Full song playback via Spotify Premium OAuth
🎨 UI enhancements with animations and theming
💬 User reviews and comments on songs
☁️ Persistent playlist storage via MongoDB or PostgreSQL