/v1/user/shows
A user's shows
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/mixcloud-api/v1/user/shows" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mixcloud-api/v1/user/shows", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mixcloud-api/v1/user/shows");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/mixcloud-api/v1/user/shows",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"data": [
{
"key": "/NTSRadio/the-one-glove-breakfast-show-w-macca-6th-june-2026-1/",
"url": "https://www.mixcloud.com/NTSRadio/the-one-glove-breakfast-show-w-macca-6th-june-2026-1/",
"name": "The One Glove Breakfast Show w/ Macca - 6th June 2026",
"slug": "the-one-glove-breakfast-show-w-macca-6th-june-2026-1",
"tags": [
{
"key": "/genres/electronica/",
"url": "https://www.mixcloud.com/genres/electronica/",
"name": "Electronica"
},
{
"key": "/genres/ambient-jazz/",
"url": "https://www.mixcloud.com/genres/ambient-jazz/",
"name": "Ambient jazz"
},
{
"key": "/genres/leftfield-pop/",
"url": "https://www.mixcloud.com/genres/leftfield-pop/",
"name": "Leftfield Pop"
},
{
"key": "/genres/nts/",
"url": "https://www.mixcloud.com/genres/nts/",
"name": "NTS"
},
{
"key": "/genres/the-one-glove-breakfast-show-w-macca/",
"url": "https://www.mixcloud.com/genres/the-one-glove-breakfast-show-w-macca/",
"name": "The One Glove Breakfast Show w/ Macca"
}
],
"user": {
"key": "/NTSRadio/",
"name": "Mixcloud NTS Radio",
"username": "NTSRadio"
},
"picture": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/6/2/4/10a9-8850-43eb-b1f9-472ddf21e7a7",
"play_count": 0,
"audio_length": 7582,
"created_time": "2026-06-06T16:09:19Z",
"repost_count": 0,
"updated_time": "2026-06-07T16:42:57Z",
"comment_count": 0,
"favorite_count": 0,
"listener_count": 0
},
{
"key": "/NTSRadio/the-one-glove-breakfast-show-w-macca-6th-june-2026/",
"url": "https://www.mixcloud.com/NTSRadio/the-one-glove-breakfast-show-w-macca-6th-june-2026/",
"name": "The One Glove Breakfast Show w/ Macca - 6th June 2026",
"slug": "the-one-glove-breakfast-show-w-macca-6th-june-2026",
"tags": [
{
"key": "/genres/electronica/",
"url": "https://www.mixcloud.com/genres/electronica/",
"name": "Electronica"
},
{
"key": "/genres/ambient-jazz/",
…