Mux · Arazzo Workflow

Mux Video View Drilldown

Version 1.0.0

List recent video views in a timeframe, then fetch the full detail of the first matching view.

1 workflow 1 source API 1 provider
View Spec View on GitHub Video InfrastructureVideo StreamingLive StreamingVideo AnalyticsVideo AIEncodingArazzoWorkflows

Provider

mux-com

Workflows

video-view-drilldown
List video views and drill into the first view's full detail.
Lists video views within a timeframe, then reads the full detail of the first returned view.
2 steps inputs: filters, limit, timeframe outputs: firstViewId, view, views
1
listViews
List video views within the supplied timeframe and filters, ordered by most recent.
2
getViewDetail
Fetch the full detail of the first returned video view, including its playback events and any errors.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Mux Video View Drilldown
  summary: List recent video views in a timeframe, then fetch the full detail of the first matching view.
  description: >-
    The standard Mux Data investigation pattern for debugging a viewer
    experience. The workflow lists video views within a timeframe and optional
    filters, captures the id of the first view in the result set, and then
    fetches the full video view detail including playback events, errors, and
    device context. Every step spells out its request inline so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-3770.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-3770.10
      capability_name: Viewership Data Capture
      spec: mux-com-video-views-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: videoViewsApi
  url: ../openapi/mux-com-video-views-api-openapi.yml
  type: openapi
workflows:
- workflowId: video-view-drilldown
  summary: List video views and drill into the first view's full detail.
  description: >-
    Lists video views within a timeframe, then reads the full detail of the
    first returned view.
  inputs:
    type: object
    required:
    - timeframe
    properties:
      timeframe:
        type: array
        description: Timeframe window for the views (e.g. ["7:days"] or two epoch timestamps).
        items:
          type: string
      filters:
        type: array
        description: Optional key:value filter clauses to narrow the views (e.g. ["country:US"]).
        items:
          type: string
      limit:
        type: integer
        description: Maximum number of views to return.
        default: 25
  steps:
  - stepId: listViews
    description: >-
      List video views within the supplied timeframe and filters, ordered by
      most recent.
    operationId: list-video-views
    parameters:
    - name: timeframe[]
      in: query
      value: $inputs.timeframe
    - name: filters[]
      in: query
      value: $inputs.filters
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      views: $response.body#/data
      firstViewId: $response.body#/data/0/id
      totalRowCount: $response.body#/total_row_count
  - stepId: getViewDetail
    description: >-
      Fetch the full detail of the first returned video view, including its
      playback events and any errors.
    operationId: get-video-view
    parameters:
    - name: VIDEO_VIEW_ID
      in: path
      value: $steps.listViews.outputs.firstViewId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      view: $response.body#/data
  outputs:
    views: $steps.listViews.outputs.views
    firstViewId: $steps.listViews.outputs.firstViewId
    view: $steps.getViewDetail.outputs.view

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/mux-com-video-view-drilldown-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.