Introduction

Ingress API Documentation

Welcome to the Ingress API documentation. This API allows you to manage RTMP ingress streams for live video streaming.

Features

  • Generate Ingress: Create RTMP ingress endpoints for streaming
  • Manage Streams: List, view, and delete ingress streams
  • Connection Tokens: Generate participant tokens for viewers
  • Full RTMP Support: Stream using any RTMP-compatible software (OBS, FFmpeg, etc.)

Quick Links

Base URL

https://live-api.block8910.com

Authentication

All API endpoints (except health check) require an x-api-key header:

curl -X POST https://live-api.block8910.com/api/ingress/generate \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{"roomName": "my-room"}'

Interactive Documentation