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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/mux-com-playback-ids-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
OpenAPI Specification
openapi: 3.2.0
info:
title: Mux Video Playback IDs API
description: 'REST API for ingesting, transcoding, storing, and delivering on-demand
and live video. Provides endpoints for direct uploads, assets, playback
IDs, live streams, and related resources. Authenticated via HTTP Basic
auth using a Mux Access Token ID and Secret.
'
version: v1
servers:
- url: https://api.mux.com
description: Mux production API
security:
- basicAuth: []
tags:
- name: Playback IDs
description: Manage playback IDs for assets.
paths:
/video/v1/assets/{ASSET_ID}/playback_ids:
parameters:
- in: path
name: ASSET_ID
required: true
schema:
type: string
post:
tags:
- Playback IDs
summary: Create a playback ID
operationId: createPlaybackId
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'201':
description: Playback ID created.
components:
securitySchemes:
basicAuth:
type: http
scheme: basic
description: HTTP Basic auth using a Mux Access Token ID (username) and Secret (password).