Naar de inhoud
GET /v1/channel

One channel's profile

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bitchute-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "One BitChute channel's profile: its subscriber count, total channel views, number of videos, when it was created and its most recent upload. Live, cached ~60s.",
        "owner": "Simon_Parkes",
        "source": "BitChute public web API (api.bitchute.com/api/beta/channel), keyless",
        "channel": "Simon Parkes",
        "created": "2020-10-16T10:27:00.712413Z",
        "category": "none",
        "channel_id": "ixl3C6dlg6S5",
        "channel_url": "https://www.bitchute.com/channel/simon_parkes/",
        "description": "",
        "subscribers": 176656,
        "total_views": 19736931,
        "video_count": 323,
        "live_enabled": true,
        "membership_level": "Default",
        "last_video_published": "2026-06-08T14:32:38.144893Z"
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:59.109Z",
        "request_id": "cc1cdff8-4ce0-46ab-b706-6ca8e3767398"
    },
    "status": "ok",
    "message": "Channel retrieved successfully",
    "success": true
}