/v1/search
Search
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/mixcloud-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mixcloud-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mixcloud-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"data": [
{
"key": "/HSEFM/louie-vega-dance-ritual-04-oct-2019/",
"url": "https://www.mixcloud.com/HSEFM/louie-vega-dance-ritual-04-oct-2019/",
"name": "Louie Vega - Dance Ritual 04 OCT 2019",
"slug": "louie-vega-dance-ritual-04-oct-2019",
"tags": [
{
"key": "/genres/house/",
"url": "https://www.mixcloud.com/genres/house/",
"name": "House"
},
{
"key": "/genres/soulful-house/",
"url": "https://www.mixcloud.com/genres/soulful-house/",
"name": "Soulful house"
},
{
"key": "/genres/afro-house/",
"url": "https://www.mixcloud.com/genres/afro-house/",
"name": "Afro house"
},
{
"key": "/genres/deep-house/",
"url": "https://www.mixcloud.com/genres/deep-house/",
"name": "Deep house"
},
{
"key": "/genres/disco/",
"url": "https://www.mixcloud.com/genres/disco/",
"name": "Disco"
}
],
"user": {
"key": "/HSEFM/",
"name": "House FM",
"username": "HSEFM"
},
"picture": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/0/a/0/7/f8a6-ef41-46c9-bc47-a15cd67a51a0",
"play_count": 10848,
"audio_length": 7230,
"created_time": "2019-10-04T21:06:29Z",
"repost_count": 58,
"updated_time": "2026-06-07T15:18:23Z",
"comment_count": 12,
"favorite_count": 418,
"listener_count": 3376
},
{
"key": "/HSEFM/dj-spinna-special-guest-show-27th-january-2018-full-set/",
"url": "https://www.mixcloud.com/HSEFM/dj-spinna-special-guest-show-27th-january-2018-full-set/",
"name": "DJ Spinna - Special Guest Show 27th January 2018 - Full Set",
"slug": "dj-spinna-special-guest-show-27th-january-2018-full-set",
"tags": [
{
"key": "/genres/house/",
"url": "https://www.mixcloud.com/genres/house/",
"name": "House"
},
{
"key": "/genres/soulful-house/",
"url": "https://www.mixcloud.com/genres/soulful-house/",
"name": "Soulful house"
},
{
…