Dolby.io Custom Endpoint Providers API

The Custom Endpoint Providers API from Dolby.io — 1 operation(s) for custom endpoint providers.

Operations 1

GET /custom-endpoint-providers Get all custom endpoint providers for your organization #

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-custom-endpoint-providers-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-custom-endpoint-providers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dolby OptiView THEOlive Custom Endpoint Providers API
  version: v2
  description: REST API for managing OptiView Live (THEOlive) channels, ingests, engines, distributions, analytics, and webhooks.
servers:
- url: https://api.theo.live/v2
  description: V2 API
- url: https://api.theo.live
  description: Base (for /v1 endpoints)
security:
- BasicAuth: []
tags:
- name: Custom Endpoint Providers
paths:
  /custom-endpoint-providers:
    get:
      tags:
      - Custom Endpoint Providers
      operationId: get-custom-endpoint-providers
      summary: Get all custom endpoint providers for your organization
      responses:
        '200':
          description: List of custom endpoint providers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomEndpointProviderListResult'
components:
  schemas:
    CustomEndpointProvider:
      type: object
      properties:
        provider:
          type: string
          description: Provider name
        organizationId:
          type: string
          description: Organization ID
        inUse:
          type: boolean
          description: Whether any custom endpoints are using this provider
        createdAt:
          type: string
          description: Creation timestamp
        updatedAt:
          type: string
          description: Last update timestamp
      required:
      - provider
      - organizationId
      - inUse
      - createdAt
      - updatedAt
    CustomEndpointProviderListResult:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CustomEndpointProvider'
          description: List of custom endpoint providers
      required:
      - data
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic