/v1/search
Search videos by query
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bitchute-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitchute-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitchute-api/v1/search");
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/search",
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": "BitChute videos matching a search query, sorted by views (default), relevance or new — sort=views surfaces the platform's most-watched content for the term. Each video carries its view count, channel and duration. Live, cached ~60s.",
"sort": "views",
"count": 25,
"query": "news",
"source": "BitChute public web API (api.bitchute.com/api/beta/search), keyless",
"videos": [
{
"title": "16th January Second Update Current News",
"views": 1102639,
"channel": "Simon Parkes",
"duration": "44:46",
"video_id": "Kwp0JVsGkjyD",
"published": "2021-01-16T14:42:30.647111Z",
"video_url": "https://www.bitchute.com/video/Kwp0JVsGkjyD/",
"channel_id": "ixl3C6dlg6S5",
"sensitivity": "normal",
"thumbnail_url": "https://static-3.bitchute.com/live/cover_images/ixl3C6dlg6S5/Kwp0JVsGkjyD_640x360.jpg"
},
{
"title": "Doctors Around the World Issue Dire WARNING: DO NOT GET THE COVID VACCINE!!",
"views": 855790,
"channel": "HealthImpactNews",
"duration": "28:34",
"video_id": "H9GyqoPMvfRa",
"published": "2020-12-08T16:18:44.578483Z",
"video_url": "https://www.bitchute.com/video/H9GyqoPMvfRa/",
"channel_id": "HlyeDvlqcVJm",
"sensitivity": "normal",
"thumbnail_url": "https://static-3.bitchute.com/live/cover_images/HlyeDvlqcVJm/H9GyqoPMvfRa_640x360.jpg"
},
{
"title": "13th January Update Current News",
"views": 771020,
"channel": "Simon Parkes",
"duration": "27:00",
"video_id": "PfR7Z0Kl4fjw",
"published": "2021-01-13T18:06:10.431929Z",
"video_url": "https://www.bitchute.com/video/PfR7Z0Kl4fjw/",
"channel_id": "ixl3C6dlg6S5",
"sensitivity": "normal",
"thumbnail_url": "https://static-3.bitchute.com/live/cover_images/ixl3C6dlg6S5/PfR7Z0Kl4fjw_640x360.jpg"
},
{
"title": "19TH JANUARY UPDATE CURRENT NEWS",
"views": 614665,
"channel": "Simon Parkes",
"duration": "20:38",
"video_id": "Ovl16Qm4B4X2",
"published": "2021-01-19T13:51:12.833660Z",
"video_url": "https://www.bitchute.com/video/Ovl16Qm4B4X2/",
"channel_id": "ixl3C6dlg6S5",
"sensitivity": "normal",
"thumbnail_url": "https://static-3.bitchute.com/live/cover_images/ixl3C6dlg6S5/Ovl16Qm4B4X2_640x360.jpg"
},
{
"title": "21st January Update Current News",
"views": 604268,
"chan
…