/v1/channel
One channel's profile
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}