No logo available for Mux - Video to DuckDB connector icon

Load Mux - Video data to DuckDB

Build a Mux - Video to DuckDB pipeline with your coding agent. One prompt scaffolds it with the dltHub AI harness, plus the Mux - Video API base URL, auth, endpoints, and incremental loading.

SourceMux - VideoDestinationDuckDBIn-process analytical database. The default local destination for dlt pipelines.

Mux is a developer platform for video streaming and management via REST APIs. Everything needed to build a working Mux - Video → DuckDB pipeline is on this page: the API's base URL, authentication, endpoints, pagination and incremental field — plus a prompt that hands the whole job to your coding agent.


Build your Mux - Video to DuckDB pipeline

Paste this prompt into Claude, Codex, or Cursor. The agent does the rest.

Prompt
Run uvx dlthub-init@latest to build a pipeline from Mux - Video to DuckDB and run it on dltHub

That scaffolds a dltHub workspace and installs the dltHub AI harness — the project rules, the secrets-management skill, and the dlt MCP server your agent needs to work safely. From there it reads the Mux - Video API, proposes the endpoints to load, then writes, runs and validates the pipeline while you review rather than type. Credentials are inspected through MCP tools, so your agent never reads secrets.toml itself. How the LLM-native workflow works →

Prefer to write it yourself? Every fact the agent uses is below.


Mux - Video API at a glance

Base URLhttps://api.mux.com
Example endpointGET video/v1/assets
Records found atdata
Authenticationall requests require HTTP Basic Auth with an Access Token ID and Secret Key — sent in the Authorization header, prefixed Basic
PaginationCursor-based via cursor, next cursor at next_cursor, page size via limit (default 10, max 100). Cursor pagination is supported for the List Assets endpoint (/video/v1/assets). Send the next_cursor value from the previous response as the cursor query parameter to retrieve the next page. When next_cursor is null, you reached the end of the list. The same endpoint also supports page/limit pagination, but cursor pagination is described as the efficient/reliable option.
Incremental fieldnext_cursor
Record idid
API referencehttps://www.mux.com/docs/core/make-api-requests

These values come from the Mux - Video API reference — the authoritative source if anything here looks out of date.


How do I authenticate with the Mux - Video API?

Mux API uses HTTP Basic Auth, requiring the Access Token ID as the username and the Access Token Secret as the password, encoded in the Authorization header.

1. Get your credentials

  1. Sign in to your Mux account at the Mux Dashboard (dashboard.mux.com). 2. Navigate to the Settings menu in the sidebar. 3. Select Access Tokens from the submenu. 4. Click the 'Generate new token' (or 'Create access token') button. 5. Assign a descriptive name to the token. 6. Select the appropriate environment (e.g., Production) and set the required permissions (typically 'Mux Video' Read/Write and 'Mux Data' Read). 7. Click 'Generate token'. 8. Copy the provided Token ID and Secret Key immediately; the Secret Key is shown only once and cannot be recovered if lost.

2. Add them to .dlt/secrets.toml

[sources.mux_video_source] MUX_TOKEN_ID = "your_token_id_here" MUX_TOKEN_SECRET = "your_token_secret_here"

dlt reads this file automatically at runtime. With the harness, the setup-secrets skill prompts you for the values and never handles the raw credential in chat. For production, see setting up credentials with dlt.


What Mux - Video data can I load into DuckDB?

These are the Mux - Video endpoints dlt can load into DuckDB:

ResourceEndpointMethodData selectorDescription
assetsvideo/v1/assetsGETdataLists all Mux assets. Supports cursor and page/limit pagination.
dimensionsdata/v1/dimensionsGETdataLists all available Mux Data dimensions.
dimension_valuesdata/v1/dimensions/{DIMENSION_ID}GETdataLists the values for a specific dimension.
exports_viewsdata/v1/exports/viewsGETdataLists available video view exports.
monitoring_dimensionsdata/v1/monitoring/dimensionsGETdataLists available monitoring dimensions.

How do I load only new Mux - Video records?

Mux - Video exposes next_cursor on video/v1/assets, so dlt can request only the records that changed since the last run. Set it as the cursor_path and dlt tracks the high-water mark for you between runs.

{"name": "assets", "endpoint": { "path": "video/v1/assets", "data_selector": "data", "incremental": {"cursor_path": "next_cursor", "initial_value": "2024-01-01T00:00:00Z"}, }}

On the first run dlt loads everything from initial_value; on every run after that it requests only what changed and appends with write_disposition="merge" if you set a primary key. See incremental loading.


What does the generated Mux - Video pipeline look like?

A standard dlt REST API pipeline — the same code you would write by hand, loading /video/v1/assets and /video/v1/live-streams from the Mux - Video API into DuckDB:

import dlt from dlt.sources.rest_api import RESTAPIConfig, rest_api_resources @dlt.source def mux_video_source(token_id_token_secret=dlt.secrets.value): config: RESTAPIConfig = { "client": { "base_url": "https://api.mux.com", "auth": {"type": "http_basic", "username": "REPLACE_ME", "password": token_id_token_secret}, }, "resources": [ {"name": "assets", "endpoint": {"path": "video/v1/assets", "data_selector": "data"}}, {"name": "dimensions", "endpoint": {"path": "data/v1/dimensions", "data_selector": "data"}} ], } yield from rest_api_resources(config) def load_mux_video_to_duckdb() -> None: pipeline = dlt.pipeline( pipeline_name="mux_video_pipeline", destination="duckdb", dataset_name="mux_video_data", ) load_info = pipeline.run(mux_video_source()) print(load_info) if __name__ == "__main__": load_mux_video_to_duckdb()

Run it with python mux_video_pipeline.py. The agent iterates on this until it loads cleanly — you review and approve, rather than write it from scratch.


How do I query Mux - Video data in DuckDB?

dlt creates one table per resource. Query the loaded data with Python or SQL — or ask your agent to, through the MCP server's execute_sql_query tool.

Python (pandas DataFrame):

import dlt data = dlt.pipeline("mux_video_pipeline").dataset() df = data.assets.df() print(df.head())

SQL:

SELECT * FROM mux_video_data.assets LIMIT 10;

See querying your data with dataset and exploring it in marimo notebooks.


How do I deploy the Mux - Video to DuckDB pipeline in production?

The pipeline runs locally, which is ideal for prototyping and one-off analysis. When you need it on a schedule, monitored on every load, and shared with your team, deploy the same dlt code on the dltHub platform — no infrastructure to maintain. The prompt above already ends with "run it on dltHub", so your agent can take it there directly.

  • Deploy & schedule — run the pipeline as a managed job with automatic retries.
  • Monitor — observable job queues, alerting, and load metrics for every run.
  • Transform — promote raw Mux - Video loads into governed, documented models.
  • Visualize & share — explore data in notebooks and publish live dashboards instead of static screenshots.

Book a demo →


What other destinations can I load Mux - Video data to?

dlt loads into any of these — only the destination argument changes:

DestinationExample value
PostgreSQL"postgres"
BigQuery"bigquery"
Snowflake"snowflake"
Redshift"redshift"
Databricks"databricks"
Filesystem (S3, GCS, Azure)"filesystem"

Set dlt.pipeline(destination="snowflake") and add credentials in .dlt/secrets.toml. On the dltHub platform the same pipeline runs against a managed Iceberg lakehouse. See the full destinations list.


Next steps

Was this page helpful?

Community Hub

Need more dlt context for Mux - Video to DuckDB?

Request dlt skills, commands, AGENT.md files, and AI-native context.