Vai al contenuto
GET /v1/cloudcast/comments

Cloudcast comments

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/mixcloud-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "data": [
            {
                "user": {
                    "name": "Neil",
                    "username": "NeilMxCd"
                },
                "comment": "Hey ho!",
                "submit_date": "2024-01-18T11:17:57Z"
            },
            {
                "user": {
                    "name": "myanza",
                    "username": "myanza"
                },
                "comment": "Una de de las mejores canciones del mundo! :)",
                "submit_date": "2019-04-03T00:08:28Z"
            },
            {
                "user": {
                    "name": "0Bah88812.",
                    "username": "mahendrab950"
                },
                "comment": "Good work !!!!",
                "submit_date": "2015-09-11T11:49:29Z"
            },
            {
                "user": {
                    "name": "Nikhil Shah (DJ Sketchy)",
                    "username": "sketchy"
                },
                "comment": "Good work mate! Like it towards the end as it gets a bit deeper. Loving the Elio Isola / Eric Morillo section.",
                "submit_date": "2009-08-02T23:51:54Z"
            },
            {
                "user": {
                    "name": "Rez",
                    "username": "rez"
                },
                "comment": "Big up for bringing the funk Sam!",
                "submit_date": "2009-08-02T17:06:59Z"
            }
        ],
        "slug": "party-time",
        "count": 5,
        "username": "spartacus",
        "paging_next": false
    },
    "meta": {
        "timestamp": "2026-06-07T16:47:06.921Z",
        "request_id": "b5027014-0869-44eb-967c-275106c0cf90"
    },
    "status": "ok",
    "message": "Comments retrieved successfully",
    "success": true
}