> ## Documentation Index
> Fetch the complete documentation index at: https://docs.luxxon.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Cloudflare Stream Live event sink

> Receives live_input.connected/disconnected/errored events. Opens or closes LxDisconnectWindow rows. Authentication: URL path token + cf-webhook-auth header — both must match.



## OpenAPI

````yaml /openapi.json post /api/v1/video/events/{token}
openapi: 3.0.0
info:
  title: Luxxon API
  description: Programmable vision — on-demand live video feeds
  version: 0.1.0
  contact: {}
servers:
  - url: https://api.luxxon.dev/api/v1
security: []
tags:
  - name: Authentication
    description: SIWE wallet sign-in. Used by the dashboard; API-key callers skip this.
  - name: Me
    description: Identity self-introspection — wallet or API key.
  - name: Workspaces
    description: Tenant root. Coverage area, availability, members.
  - name: API keys
    description: Per-workspace scoped credentials (lxxn_*).
  - name: Pricing
    description: Live rate + optional pre-quoted rate lock.
  - name: Sessions
    description: 'Visual session lifecycle: request → dispatch → authorize → start → end.'
  - name: Wallet
    description: On-chain wallet state and event log for a workspace.
  - name: Settlements
    description: On-chain settlement view per session.
  - name: Health
    description: Proof-of-life. No auth.
  - name: Webhooks
    description: Inbound video events from Cloudflare Stream. Internal.
paths:
  /api/v1/video/events/{token}:
    post:
      tags:
        - Webhooks
      summary: Cloudflare Stream Live event sink
      description: >-
        Receives live_input.connected/disconnected/errored events. Opens or
        closes LxDisconnectWindow rows. Authentication: URL path token +
        cf-webhook-auth header — both must match.
      operationId: LxVideoEventsController_ingest
      parameters:
        - name: token
          required: true
          in: path
          description: Shared secret matching VIDEO_EVENTS_TOKEN.
          schema:
            type: string
      responses:
        '202':
          description: ''

````