/v1/categories
Categories
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/mixcloud-api/v1/categories" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mixcloud-api/v1/categories", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mixcloud-api/v1/categories");
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/categories",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"data": [
{
"key": "/categories/ambient/",
"url": "https://www.mixcloud.com/categories/ambient/",
"name": "Ambient"
},
{
"key": "/categories/bass/",
"url": "https://www.mixcloud.com/categories/bass/",
"name": "Bass"
},
{
"key": "/categories/beats/",
"url": "https://www.mixcloud.com/categories/beats/",
"name": "Beats"
},
{
"key": "/categories/chillout/",
"url": "https://www.mixcloud.com/categories/chillout/",
"name": "Chillout"
},
{
"key": "/categories/classical/",
"url": "https://www.mixcloud.com/categories/classical/",
"name": "Classical"
},
{
"key": "/categories/deep-house/",
"url": "https://www.mixcloud.com/categories/deep-house/",
"name": "Deep House"
},
{
"key": "/categories/drum-bass/",
"url": "https://www.mixcloud.com/categories/drum-bass/",
"name": "Drum & Bass"
},
{
"key": "/categories/dub/",
"url": "https://www.mixcloud.com/categories/dub/",
"name": "Dub"
},
{
"key": "/categories/dubstep/",
"url": "https://www.mixcloud.com/categories/dubstep/",
"name": "Dubstep"
},
{
"key": "/categories/edm/",
"url": "https://www.mixcloud.com/categories/edm/",
"name": "EDM"
},
{
"key": "/categories/electronica/",
"url": "https://www.mixcloud.com/categories/electronica/",
"name": "Electronica"
},
{
"key": "/categories/funk/",
"url": "https://www.mixcloud.com/categories/funk/",
"name": "Funk"
},
{
"key": "/categories/garage/",
"url": "https://www.mixcloud.com/categories/garage/",
"name": "Garage"
},
{
"key": "/categories/hip-hop/",
"url": "https://www.mixcloud.com/categories/hip-hop/",
"name": "Hip Hop"
},
{
"key": "/categories/house/",
"url": "https://www.mixcloud.com/categories/house/",
"name": "House"
},
{
"key": "/categories/indie/",
"url": "https://www.mixcloud.com/categories/indie/",
"name": "Indie"
},
{
"key": "/categories/jazz/",
"url": "https://www.m
…