Dolby.io Webhook API

Register and manage event-driven webhooks for feeds, recordings, thumbnails, transcoders, and viewer connections.

Operations 3

GET /webhooks List Webhooks #
POST /webhooks Create Webhook #
DELETE /webhooks/{webhookID} Delete Webhook #

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/dolby-io-webhook-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

dolby-io-webhook-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dolby OptiView Real-time Streaming Webhook API
  description: 'REST API for managing OptiView Real-time Streaming (formerly Millicast / Dolby.io

    Real-time Streaming) — publish/subscribe tokens, recordings, transcoders,

    encoder profiles, clusters, analytics, and webhooks. All requests are

    authenticated with a Bearer API Secret created in the streaming dashboard

    (Settings -> Security -> API Secrets).

    '
  version: '2026.05'
  contact:
    name: Dolby OptiView Support
    url: https://optiview.dolby.com/docs/millicast/
servers:
- url: https://api.millicast.com/api
  description: Production REST API
security:
- BearerAuth: []
tags:
- name: Webhook
  description: Register and manage event-driven webhooks for feeds, recordings, thumbnails, transcoders, and viewer connections.
paths:
  /webhooks:
    get:
      tags:
      - Webhook
      summary: List Webhooks
      operationId: listWebhooks
      responses:
        '200':
          description: Configured webhooks
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Webhook'
    post:
      tags:
      - Webhook
      summary: Create Webhook
      description: Register a webhook URL to receive feeds, recordings, thumbnails, transcoder, and viewer-connection events. Payloads are signed with HMAC-SHA1 in the X-Millicast-Signature header.
      operationId: createWebhook
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookCreate'
      responses:
        '200':
          description: Webhook created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhook'
  /webhooks/{webhookID}:
    delete:
      tags:
      - Webhook
      summary: Delete Webhook
      operationId: deleteWebhook
      parameters:
      - name: webhookID
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: Webhook removed
components:
  schemas:
    Webhook:
      type: object
      properties:
        id:
          type: integer
        url:
          type: string
          format: uri
        secret:
          type: string
          description: HMAC-SHA1 secret used to sign event payloads (X-Millicast-Signature header).
        isFeedHooks:
          type: boolean
        isRecordingHooks:
          type: boolean
        isThumbnailHooks:
          type: boolean
        isTranscoderHooks:
          type: boolean
        isViewerConnectionHooks:
          type: boolean
    WebhookCreate:
      type: object
      required:
      - url
      properties:
        url:
          type: string
          format: uri
        isFeedHooks:
          type: boolean
          default: false
        isRecordingHooks:
          type: boolean
          default: false
        isThumbnailHooks:
          type: boolean
          default: false
        isTranscoderHooks:
          type: boolean
          default: false
        isViewerConnectionHooks:
          type: boolean
          default: false
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Secret