Zum Inhalt springen
GET /v1/user

User profile

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/mixcloud-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/mixcloud-api/v1/user" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mixcloud-api/v1/user", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mixcloud-api/v1/user");
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",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "user": {
            "bio": "Stream us live here: https://www.nts.live/\n\nFull tracklists available here: https://www.nts.live/latest\n\nNTS is a global radio platform built for an international community of music lovers. A platform for the impassioned, it’s a space for artists, DJs and hosts to explore ideas - through sound or otherwise - without limitation or restriction. Below you’ll find recordings of all previous broadcasts, from our launch in April 2011 up to the present day.\n\nReceive news directly from NTS: https://www.nts.live/newsletter\n\nSupport NTS: https://www.nts.live/supporters",
            "key": "/NTSRadio/",
            "url": "https://www.mixcloud.com/NTSRadio/",
            "city": "London",
            "name": "Mixcloud NTS Radio",
            "cover": null,
            "is_pro": true,
            "country": "United Kingdom",
            "picture": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/6/c/6/2/4cae-6e61-411c-adb6-9d9cd3e9112c.jpg",
            "username": "NTSRadio",
            "is_premium": true,
            "created_time": "2011-07-28T15:17:56Z",
            "listen_count": 590,
            "favorite_count": 1,
            "follower_count": 232278,
            "cloudcast_count": 87024,
            "following_count": 209
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:47:05.795Z",
        "request_id": "4cf2a944-f5e9-4b95-9696-9168a43252a0"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}