Red5 Servlet Configuration API

Server-level restreamer plugin configuration

Operations 1

GET /restreamer/config Get Restreamer Servlet Configuration #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/red5-servlet-configuration-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

red5-servlet-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Red5 Pro Restreamer Servlet Configuration API
  description: The Red5 Pro Restreamer API controls live stream retransmission to external RTMP, RTMPS, SRT, and Zixi destinations including social media platforms like Facebook and YouTube. It accepts JSON-based provisions via POST requests to configure push and pull restreaming sessions from a Red5 Pro server. The API supports file-based pseudo-live restreaming of FLV and MP4 files, as well as real-time forwarding of live ingest streams to multiple destinations simultaneously.
  version: '1.0'
  contact:
    name: Red5 Support
    url: https://www.red5.net/contact/
  termsOfService: https://www.red5.net/terms/
servers:
- url: http://{host}:5080
  description: Red5 Pro Server with Restreamer plugin
  variables:
    host:
      default: localhost
      description: Hostname or IP address of the Red5 Pro server
security:
- accessToken: []
tags:
- name: Servlet Configuration
  description: Server-level restreamer plugin configuration
paths:
  /restreamer/config:
    get:
      operationId: getRestreamConfig
      summary: Get Restreamer Servlet Configuration
      description: Returns the current server-level configuration for the Restreamer plugin servlet, including connection limits, timeouts, and default settings.
      tags:
      - Servlet Configuration
      parameters:
      - $ref: '#/components/parameters/accessTokenParam'
      responses:
        '200':
          description: Restreamer configuration returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RestreamerConfig'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Error:
      type: object
      description: Error response
      properties:
        code:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Human-readable error message
    RestreamerConfig:
      type: object
      description: Server-level restreamer plugin configuration
      properties:
        maxConnections:
          type: integer
          description: Maximum number of concurrent restream connections allowed
        connectionTimeout:
          type: integer
          description: Connection timeout in milliseconds
        reconnectAttempts:
          type: integer
          description: Number of reconnection attempts on connection loss
        reconnectDelay:
          type: integer
          description: Delay between reconnect attempts in milliseconds
  responses:
    Unauthorized:
      description: Authentication failed or access token is missing or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    accessTokenParam:
      name: accessToken
      in: query
      description: API access token for authentication
      required: true
      schema:
        type: string
  securitySchemes:
    accessToken:
      type: apiKey
      in: query
      name: accessToken
      description: API access token for authenticating Restreamer API requests
externalDocs:
  description: Red5 Pro Restreamer API Documentation
  url: https://www.red5.net/docs/red5-pro/development/api/restreamer/