A metadata analysis tool for the Suno AI music platform. Paste a Suno song URL or ID to inspect its full creation history — prompts, tags, generation settings, and lineage across extends, covers, and upsamples.
- Song tree traversal — Recursively walks a song's lineage (covers, upsamples, extends) to build the full creation history
- Metadata display — Title, artist, play count, likes, model version, duration, commercial use status, and more
- Prompt & tag inspection — View the positive and negative tags and full lyrics/prompt used for each segment
- Audio playback — Listen to any clip directly in the browser
- Bearer token support — Optionally provide a Suno bearer token (stored locally) to access private song data
- Click Install to set up the application.
- Click Start to launch the local web server.
- Open the WebUI and paste a Suno song URL or ID.
Hipster interacts with the Suno Studio API. While this launcher provides a web UI, you can programmatically access Suno metadata if you have a bearer token.
const response = await fetch("https://studio-api.suno.ai/api/external/clips/?ids=<SONG_ID>", {
headers: {
"Authorization": "Bearer <YOUR_TOKEN>"
}
});
const data = await response.json();
console.log(data);import requests
url = "https://studio-api.suno.ai/api/external/clips/?ids=<SONG_ID>"
headers = {"Authorization": "Bearer <YOUR_TOKEN>"}
response = requests.get(url, headers=headers)
print(response.json())curl -H "Authorization: Bearer <YOUR_TOKEN>" https://studio-api.suno.ai/api/external/clips/?ids=<SONG_ID>