Openwhyd

Curated streaming-track playlists as JSON feeds

🎬 MediaUNMONITOREDchecked 12 min ago
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
    }
  ]
}
Call itcurl · fetch · python
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

Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /hot?format=json has been probed
GET/hot?format=jsonPROBED

Curated streaming-track playlists as JSON feeds

GET/hot?limit=5

Hot — documented GET route.

GET/hot?page=1

Hot — documented GET route.

GET/logout

Logout — documented GET route.

GET/login?action=forgot&amp

Login — documented GET route.

GET/login?action=login&amp

Login — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.