Skip to content

xerohour/hipster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hipster Pinokio Launcher

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.

Features

  • 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

How to use

  1. Click Install to set up the application.
  2. Click Start to launch the local web server.
  3. Open the WebUI and paste a Suno song URL or ID.

API Documentation

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.

JavaScript

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);

Python

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

curl -H "Authorization: Bearer <YOUR_TOKEN>" https://studio-api.suno.ai/api/external/clips/?ids=<SONG_ID>

About

A metadata analysis tool for the Suno AI music platform.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors