Openwhyd
Curated streaming-track playlists as JSON feeds
Openwhyd is an open-source music-curation platform; append ?format=json to its pages and you get JSON lists of user-posted tracks that link out to YouTube, SoundCloud, and friends. This /hot endpoint returns what's currently trending. Keyless, though no CORS header came back on our probe.
GET https://openwhyd.org/hot?format=json
{
"hasMore": {
"skip": 20
},
"tracks": [
{
"_id": "6a46799f972d6f690bdc8dc6",
"eId": "/yt/8jtA-uYv5Aw",
"name": "Manon Lisa - Le Petit Pêcheur",
"uNm": "Médiathèques de la Communauté Urbaine d'Alençon",
"score": 7,
"trackUrl": "//youtube.com/watch?v=8jtA-uYv5Aw"
}
]
}curl "https://openwhyd.org/hot?format=json"const res = await fetch("https://openwhyd.org/hot?format=json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://openwhyd.org/hot?format=json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/hot?format=jsonPROBEDCurated streaming-track playlists as JSON feeds
/hot?limit=5Hot — documented GET route.
/hot?page=1Hot — documented GET route.
/logoutLogout — documented GET route.
/login?action=forgot&Login — documented GET route.
/login?action=login&Login — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Openwhyd: common questions
Is Openwhyd free to use?
Yes — Openwhyd is a free media API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Openwhyd need an API key?
No — Openwhyd needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Openwhyd from the browser?
Not directly — Openwhyd doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Openwhyd up right now?
As of our last scheduled check, Openwhyd is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.