Aller au contenu
GET /v1/meta

Service metadata

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitchute-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitchute-api/v1/meta");
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/meta",
    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": "trending takes selection (day or week, default week) and limit (1-50). search takes q (required) and sort (views/relevance/new, default views). channel takes channel_id (required). video takes video_id (required). meta takes no parameters. View and subscriber counts are live from the upstream; use the trending selections and search-by-views for the platform's genuinely high-view content. A short ~60-second protective cache fronts the upstream.",
        "source": "BitChute public web API (api.bitchute.com/api/beta), keyless, live",
        "service": "bitchute-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/video": "One video's full detail (video_id=...).",
            "GET /v1/search": "Search videos by query, sorted by views/relevance/new (q=news).",
            "GET /v1/channel": "One channel's profile — subscribers, views, video count (channel_id=...).",
            "GET /v1/trending": "Videos trending today or this week, ranked by views (selection=day|week)."
        },
        "description": "Live video, channel and trend data from BitChute, the alt-tech video-sharing platform (a YouTube alternative), from its public web API (no key). It exposes what is trending today and this week (ranked by views), video search sorted by views/relevance, full channel profiles (subscribers, total views, video count) and full video detail. The BitChute platform cut — a distinct social/video platform, separate from the YouTube, TikTok, Odysee, Kick and other platform feeds.",
        "sample_trending": {
            "title": "The Nature of Human Consciousness with John Searle (1932 - 2025)",
            "views": 96381,
            "channel": "Information_Machine"
        },
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:00.023Z",
        "request_id": "f7313bc2-3ea5-4242-be9b-64327a37982d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}