← Back

Add OpenShare to your phone

Share a playlist straight from your music app's share sheet — no copy-pasting links.

iPhone & iPad (Shortcut)

  1. 1Open the Shortcuts app and create a new shortcut.
  2. 2Add Receive input, then set it to accept URLs and Text from the share sheet.
  3. 3Add a Get Contents of URL action. Set Method to POST, URL to https://acoustic-pony-932.convex.site/share, Request Body to JSON with a single field url set to the Shortcut Input.
  4. 4Add Get Dictionary Value for key url, then Copy to Clipboard (and optionally Share).
  5. 5In the shortcut settings, enable Show in Share Sheet. Now "OpenShare" appears when you share a playlist from Spotify or Apple Music.

Android (install + share)

  1. 1Open OpenShare in Chrome and tap Install app (or Menu → Add to Home screen).
  2. 2From your music app, tap Share and choose OpenShare — the link is created automatically.

Any device (web)

You can always paste a playlist link on the home page. The share endpoint is also a plain HTTP API:

curl -X POST https://acoustic-pony-932.convex.site/share \
  -H "content-type: application/json" \
  -d '{"url":"https://open.spotify.com/playlist/…"}'