Aller au contenu
GET /v1/video

One video's full detail

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/bitchute-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}