MTShare

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:

  1. Create a free account at mtshare.net/register (or in the mobile app) and verify your email.
  2. Call POST /api/v1/auth/login with your email and password to receive a JWT access token.
  3. 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

POST/api/v1/auth/register- Create an account
POST/api/v1/auth/login- Log in and get an API token
POST/api/v1/auth/refresh- Refresh your token
POST/api/v1/links- Create a universal link
GET/api/v1/l/{shortCode}- Get link details
GET/api/v1/links/trending- Get trending songs
GET/api/v1/links/my-links- Get your links (auth required)

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)

EndpointRateBurst
/api/v1/auth/*5 req/s10
POST /api/v1/links2 req/s5
/api/v1/links/search/*5 req/s10
All other endpoints10 req/s20

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 β†’