API Docs
REST endpoints for the LiveTube live event intelligence API. Base URL: https://api.livetube.ai. All responses are JSON. Authentication via Authorization: Bearer YOUR_KEY header. Get a free dev key.
Quickstart
curl https://api.livetube.ai/v1/events/flagship \
-H "Authorization: Bearer YOUR_KEY"Returns one richly-attributed live event with cluster + claim + trust data. Try it now in the playground — no key needed for sample calls.
Endpoints
/v1/eventsPaginated list of clustered live events.
Query params: limit, offset, topic, region, min_confidence
/v1/events/flagshipSingle highest-signal LIVE event meeting the showcase quality bar (≥10 sources + ≥1 verified). Falls back to evergreen if none qualifies.
/v1/events/{event_id}Full event detail: cluster + sources + AI briefing + region.
/v1/events/{event_id}/claimsPer-event claims with consensus tier (confirmed ≥4 sources / developing 2-3 / unconfirmed 1) and contradiction detection.
/v1/events/{event_id}/timelineTime-ordered evolution of an event: claim arrivals, source confirmations, status transitions.
/v1/events/categoriesEvent counts and total viewers per topic (Storm Chasing, Conflict, Politics, Natural Disaster, Space, Civil Unrest, …).
/v1/channels/reliabilityChannel reliability scores: claims_made, claims_confirmed, ELO-derived reliability_score.
Query params: min_claims, limit
Response shape
{
"id": "dc542c9f-...",
"title": "Donald Trump escorted out of...",
"topic": "Politics",
"status": "LIVE",
"severity": "critical",
"confidence_score": 70,
"source_count": 67,
"verified_source_count": 5,
"total_viewers": 135689,
"region": "Middle East",
"thumbnail_url": "https://...",
"created_at": "2026-04-26T01:19:19Z"
}Need production rate limits, webhooks, or bulk archive search? Contact for production.