Dolby.io ABR Ladders API

The ABR Ladders API from Dolby.io — 1 operation(s) for abr ladders.

Operations 1

GET /abr Get all ABR ladders 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-abr-ladders-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-abr-ladders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dolby OptiView THEOlive ABR Ladders 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: ABR Ladders
paths:
  /abr:
    get:
      tags:
      - ABR Ladders
      operationId: get-abr-ladders
      summary: Get all ABR ladders for your organization
      responses:
        '200':
          description: List of ABR ladders
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbrListResult'
components:
  schemas:
    AbrListResult:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                description: Unique identifier of the ABR ladder
              name:
                type: string
                description: Name of the ABR ladder
              video:
                type: array
                items:
                  type: object
                  properties:
                    bitrate:
                      type: number
                      description: Bitrate in bps
                    id:
                      type: string
                      description: Unique identifier for this video quality
                    label:
                      type: string
                      description: Label for this video quality
                    width:
                      type: number
                      description: Width in pixels
                    height:
                      type: number
                      description: Height in pixels
                    frameRate:
                      type: object
                      properties:
                        scale:
                          type: number
                          minimum: 1
                          description: Frame rate scale
                        value:
                          type: number
                          minimum: 1
                          description: Frame rate value
                      required:
                      - scale
                      - value
                      description: Frame rate configuration
                  required:
                  - bitrate
                  - id
                  - label
                  - width
                  - height
                description: List of video quality entries
              audio:
                type: object
                properties:
                  bitrate:
                    type: number
                    minimum: 1
                    description: Audio bitrate in kbps
                required:
                - bitrate
                description: Audio configuration
              resources:
                type: object
                properties:
                  cpuCores:
                    type: number
                    minimum: 1
                    description: Number of CPU cores
                  memoryMiB:
                    type: number
                    minimum: 1
                    description: Memory in MiB
                required:
                - cpuCores
                - memoryMiB
                description: Resource allocation configuration
            required:
            - id
            - name
            - video
          description: List of ABR ladders
      required:
      - data
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic