Features
Playlist Conversion
Paste a public playlist URL from Spotify, Apple Music, YouTube, Tidal, or Deezer and MTShare creates a universal playlist link with every track matched across all platforms. Each track gets its own cross-platform links so your friends can listen on whichever service they use.
Large playlists are processed in the background β you'll get your link immediately and tracks populate automatically. Playlist owners can refresh their links to pick up any changes.
Note: Only public playlists can be converted. Private playlists are not accessible. Opening the full playlist on a different platform (e.g. βSave to Spotifyβ) is not currently available but is planned for a future release.
Podcasts & Audiobooks
Not just music. Paste a Spotify podcast episode, show, or audiobook URL and MTShare creates a universal link that opens on Apple Podcasts, Apple Books, and YouTube β wherever your friend listens.
We use strict matching: only verified platform links are shown. If a podcast episode isn't available on Apple Podcasts, we don't send you to a random search page. Tracks, podcasts and audiobooks each get their own icon so you always know what you're opening.
Note: Regional catalogues differ β a podcast or audiobook available in one country may not be in another. Apple Music-style music matchers (Deezer, Tidal, SoundCloud, etc.) are skipped for podcasts and audiobooks.
Concert Discovery
Every song link page now shows upcoming concerts for the artist. See live shows, festival appearances, and tour dates with direct links to buy tickets from Ticketmaster and Skiddle.
MTShare detects your approximate location and highlights concerts near you with a π Nearby badge. Events are sourced from multiple ticketing platforms so you can compare and choose where to buy.
Universal Links
One link that automatically opens in your friend's preferred music app.
Learn more βRich Previews
Every link comes with beautiful previews including album art, artist info, and links to lyrics. When shared on social media, your links look great.
See an example βTrending Charts
See what's being shared the most across all MTShare users.
View trending βDeveloper API
Build your own integrations with our REST API. Create links, fetch metadata, and access trending data programmatically.
Authentication
The API uses the same accounts as the app. All write endpoints require a Bearer token:
- Create a free account at mtshare.net/register (or in the mobile app) and verify your email.
- Call POST /api/v1/auth/login with your email and password to receive a JWT access token.
- Send the token on every request in the Authorization: Bearer header.
curl -X POST https://api.mtshare.net/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"username_or_email": "[email protected]", "password": "..."}'
# Response:
# {"access_token": "eyJhbGciOi...", "token_type": "bearer", "user": {...}}Tokens are valid for 7 days. Refresh before expiry to avoid interruption:
curl -X POST https://api.mtshare.net/api/v1/auth/refresh \ -H "Authorization: Bearer YOUR_TOKEN"
API Endpoints
Example: Create a Link
curl -X POST https://api.mtshare.net/api/v1/links \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"url": "https://open.spotify.com/track/..."}'Rate Limits (per IP)
| Endpoint | Rate | Burst |
|---|---|---|
| /api/v1/auth/* | 5 req/s | 10 |
| POST /api/v1/links | 2 req/s | 5 |
| /api/v1/links/search/* | 5 req/s | 10 |
| All other endpoints | 10 req/s | 20 |
Exceeding limits returns HTTP 429 (Too Many Requests)
For API access and documentation, please email us at [email protected]
Mobile Apps
Share music directly from your phone. Our iOS and Android apps integrate with the native share sheet for seamless sharing.
Learn more β