/v1/video
One video's full detail
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/bitchute-api/v1/video" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitchute-api/v1/video", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitchute-api/v1/video");
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/video",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "One BitChute video's full detail: its view count, duration, channel, description and hashtags. Live, cached ~60s.",
"title": "16th January Second Update Current News",
"views": 1102639,
"source": "BitChute public web API (api.bitchute.com/api/beta/video), keyless",
"channel": "Simon Parkes",
"duration": "44:46",
"hashtags": [],
"video_id": "Kwp0JVsGkjyD",
"published": "2021-01-16T14:42:30.647111Z",
"video_url": "https://www.bitchute.com/video/Kwp0JVsGkjyD/",
"channel_id": "ixl3C6dlg6S5",
"description": "www.simonparkes.org\r\n\r\nTelegram:\r\nhttps://t.me/simon_parkes\r\n\r\nBitchute Channel:\r\nhttps://www.bitchute.com/simon_parkes/\r\n\r\nYoutube:\r\nhttps://www.youtube.com/simonparkes",
"sensitivity": "normal",
"thumbnail_url": "https://static-3.bitchute.com/live/cover_images/ixl3C6dlg6S5/Kwp0JVsGkjyD_640x360.jpg"
},
"meta": {
"timestamp": "2026-06-12T19:35:59.371Z",
"request_id": "c4a3b29f-e783-44d0-b1ca-c93528575319"
},
"status": "ok",
"message": "Video retrieved successfully",
"success": true
}