# SpotiURL > Free tools for converting between Spotify URLs and URIs, generating Spotify embed codes, and cleaning tracking parameters from Spotify links. Supports tracks, albums, artists, playlists, shows (podcasts), and episodes. SpotiURL is built for musicians, DJs, playlist curators, podcasters, labels, and developers who work with the Spotify Web API or share Spotify links at scale. All tools run client-side in the browser; no data is sent to a server, no account is required. ## Spotify identifier formats Spotify references content in two interchangeable formats that share the same 22-character Base62 ID: - **URI format:** `spotify:{type}:{id}`, used by the Spotify Web API, desktop app, and automation tools. - **URL format:** `https://open.spotify.com/{type}/{id}`, used for sharing, web links, and deep links. Both formats accept these six content types: `track`, `album`, `artist`, `playlist`, `show`, `episode`. ### Conversion rules - URI → URL: replace `spotify:` prefix with `https://open.spotify.com/` and swap the colon between type and ID for a slash. - URL → URI: strip `https://open.spotify.com/`, replace the slash between type and ID with a colon, prepend `spotify:`. - Query strings (`?si=...`, `?utm_source=...`) on URLs are tracking parameters and can be safely removed; they are not part of the canonical identifier. - The ID portion is always 22 characters, Base62 (`A-Z`, `a-z`, `0-9`). ### Type reference | Type | URI format | URL format | Example ID | |---|---|---|---| | Track | `spotify:track:{id}` | `https://open.spotify.com/track/{id}` | `6rqhFgbbKwnb9MLmUQDhG6` | | Album | `spotify:album:{id}` | `https://open.spotify.com/album/{id}` | `0sNOF9WDwhWunNAHPD3Baj` | | Artist | `spotify:artist:{id}` | `https://open.spotify.com/artist/{id}` | `06HL4z0CvFAxyc27GXpf02` | | Playlist | `spotify:playlist:{id}` | `https://open.spotify.com/playlist/{id}` | `37i9dQZF1DXcBWIGoYBM5M` | | Show (podcast) | `spotify:show:{id}` | `https://open.spotify.com/show/{id}` | `4rOoJ6Egrf8K2IrywzwOMk` | | Episode | `spotify:episode:{id}` | `https://open.spotify.com/episode/{id}` | `512ojhOuo1ktJprKbVcKyQ` | ## Tools - [Spotify URL and URI Converter](https://spotiurl.com/): Convert any Spotify URL to a URI or any URI to a URL. Auto-detects direction and type. Supports bulk conversion. - [Spotify ID Finder](https://spotiurl.com/find-id/): Extract the 22-character Spotify ID from any URL or URI. Returns ID, type, URI, and URL together. Bulk extraction supported. - [Spotify Embed Code Generator](https://spotiurl.com/embed/): Paste a Spotify URL or URI, get ready-to-use iframe embed code. Configurable size and light/dark theme. - [Spotify Link Cleaner](https://spotiurl.com/clean/): Remove tracking parameters (`si`, `utm_*`, `context`, `nd`) from Spotify URLs. Preserves canonical link. - [All Tools](https://spotiurl.com/tools/): Index of every converter, generator, and cleaner. ## MCP Server & REST API (for AI agents and developers) SpotiURL exposes all of its tools programmatically: free, no API key, no authentication. - **MCP server (Streamable HTTP):** `https://spotiurl.com/api/mcp/`. Tools: `convert_spotify_link`, `convert_spotify_links_bulk` (up to 500 links per call), `clean_spotify_link`, `generate_spotify_embed`. Connect from Claude Code (`claude mcp add --transport http spotiurl https://spotiurl.com/api/mcp/`), Claude Desktop/claude.ai custom connectors, Cursor, or any MCP client. - **REST API:** `GET https://spotiurl.com/api/convert/?input={url-or-uri}` returns `{type, id, uri, url}`; `GET https://spotiurl.com/api/clean/?url={url}` returns the canonical link with tracking parameters removed; `GET https://spotiurl.com/api/embed/?input={url-or-uri}&size={compact|normal|large}&theme={dark|light}` returns iframe embed HTML. - [Setup instructions and full documentation](https://spotiurl.com/mcp/) ## Per-type converter pages - [Track converter](https://spotiurl.com/convert/track/): Convert Spotify track URLs and URIs. - [Album converter](https://spotiurl.com/convert/album/): Convert Spotify album URLs and URIs. - [Artist converter](https://spotiurl.com/convert/artist/): Convert Spotify artist URLs and URIs. - [Playlist converter](https://spotiurl.com/convert/playlist/): Convert Spotify playlist URLs and URIs. - [Show converter](https://spotiurl.com/convert/show/): Convert Spotify podcast show URLs and URIs. - [Episode converter](https://spotiurl.com/convert/episode/): Convert Spotify podcast episode URLs and URIs. ## Per-type URI format guides - [What is a Spotify Track URI?](https://spotiurl.com/uri/track/): Format, examples, and how to find it. - [What is a Spotify Album URI?](https://spotiurl.com/uri/album/): Format, examples, and how to find it. - [What is a Spotify Artist URI?](https://spotiurl.com/uri/artist/): Format, examples, and how to find it. - [What is a Spotify Playlist URI?](https://spotiurl.com/uri/playlist/): Format, examples, and how to find it. - [What is a Spotify Show URI?](https://spotiurl.com/uri/show/): Format, examples, and how to find it. - [What is a Spotify Episode URI?](https://spotiurl.com/uri/episode/): Format, examples, and how to find it. ## Per-type embed generators - [Track embed generator](https://spotiurl.com/embed/track/): Generate iframe embed code for Spotify tracks. - [Album embed generator](https://spotiurl.com/embed/album/): Generate iframe embed code for Spotify albums. - [Artist embed generator](https://spotiurl.com/embed/artist/): Generate iframe embed code for Spotify artist profiles. - [Playlist embed generator](https://spotiurl.com/embed/playlist/): Generate iframe embed code for Spotify playlists. - [Show embed generator](https://spotiurl.com/embed/show/): Generate iframe embed code for Spotify podcasts. - [Episode embed generator](https://spotiurl.com/embed/episode/): Generate iframe embed code for Spotify podcast episodes. ## Reference - [What Is a Spotify URL?](https://spotiurl.com/spotify-url/): The `https://open.spotify.com/{type}/{id}` link format for all six content types, how to copy a Spotify URL on mobile, desktop, and the web player, what the `?si=` share parameter is, `spotify.link` short links, and how URL, URI, and ID differ. - [Spotify For Artists Analytics Guide](https://spotiurl.com/spotify-for-artists/): Complete guide to Spotify For Artists (S4A): how to claim your profile, verification, every analytics metric (monthly listeners, streams, save rate, audience demographics, source of streams, Canvas), and tools that pair with it. - [Spotify Pre-Save Links Guide](https://spotiurl.com/pre-save/): How Spotify pre-save links work, OAuth flow, best tools, and best practices for release campaigns. - [FAQ](https://spotiurl.com/faq/): Common questions about Spotify URIs, URLs, embeds, and link cleaning. - [Sitemap](https://spotiurl.com/sitemap-index.xml): Full XML sitemap of all pages. ## How to find a Spotify URI Desktop app (Mac/Windows): right-click any track, album, artist, playlist, show, or episode → **Share** → hold **Option** (Mac) or **Alt** (Windows) → click **Copy Spotify URI**. Mobile app: three-dot menu → **Share** → **Copy Link** (returns a URL; convert at [spotiurl.com](https://spotiurl.com/)). Spotify for Artists / Podcasters dashboards: URIs are listed in profile and release settings.