/v1/channel
One channel's profile
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}