https://github.com/grivdm/music_share_api
REST API for music link conversion between streaming platforms.
https://github.com/grivdm/music_share_api
deezer-api kamal postgresql ruby ruby-on-rails spotify-api youtube-api
Last synced: 29 days ago
JSON representation
REST API for music link conversion between streaming platforms.
- Host: GitHub
- URL: https://github.com/grivdm/music_share_api
- Owner: grivdm
- Created: 2025-03-16T03:53:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-04-19T17:33:17.000Z (about 2 months ago)
- Last Synced: 2026-04-19T18:31:54.454Z (about 2 months ago)
- Topics: deezer-api, kamal, postgresql, ruby, ruby-on-rails, spotify-api, youtube-api
- Language: Ruby
- Homepage:
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Music Share API 🎵
[](https://www.ruby-lang.org/)
[](https://rubyonrails.org/)
[](https://github.com/grivdm/music_share_api/actions/workflows/ci.yml)
REST API for music link conversion between streaming platforms.
## Features
- Convert between Spotify, Deezer, YouTube Music
- Docker & Kamal deployment
- PostgreSQL caching
## Platforms
| Platform | Status | ISRC Search |
|----------|--------|-------------|
| Spotify | ✅ | ✅ |
| Deezer | ✅ | ✅ |
| YouTube Music | ✅ | ❌ |
## Usage
```http
POST /api/v1/convert
{"url": "https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT"}
Response:
{
"track": {"title": "Song", "artist": "Artist"},
"links": {"spotify": "...", "deezer": "..."}
}
```
## Development
```bash
git clone repo && cd music_share_api
bundle install
cp .env.example .env # Configure API keys
rails db:setup && rails server
```