Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Marketing / Hubspot / Media Bridge
Media Bridge logo

HubSpot Media Bridge

Browse all Hubspot APIs
✓ Official Vendor SpecMarketingContent Managementoauth2, apiKey32 EndpointsREST

For Agents

Register a media platform integration with HubSpot, define media object schemas, and stream playback events into HubSpot reporting on behalf of an integrator app.

Use for: Register a new media bridge integrator with HubSpot, Create a video schema in the HubSpot media bridge, Send a media-played-percent event for a specific viewer, List all properties defined on the video object type

Not supported: Does not host or transcode media files and does not surface non-media CMS content — use for registering an external media platform with HubSpot and streaming engagement events only.

The HubSpot Media Bridge API lets external media platforms register their video and audio content with HubSpot so it can be embedded, tracked, and reported on alongside other CMS content. It exposes object schemas, custom properties, settings, and event ingestion endpoints — the integrator defines what a media object looks like, registers a connected app, and streams playback events back to HubSpot. The bridge is how third-party media platforms become first-class content in HubSpot reporting.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Media Bridge to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Media Bridge, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Media Bridge API.

Register a media integrator app and configure its event visibility settings

Define custom object schemas for video, audio, or other media types

Manage custom properties and property groups on media objects

Stream playback events such as media-played-percent and attention-span into HubSpot

Read object definitions to align an integrator's data model with HubSpot reporting

Archive obsolete media properties in batch when the integrator schema changes

Inspect and update associations between media object types in HubSpot

Use Cases

Patterns agents use Media Bridge API for, with concrete tasks.

★ Connect a Video Platform to HubSpot Reporting

A video platform wants its content to appear inside HubSpot's CMS reporting alongside blog posts and pages. The Media Bridge lets the integrator register the app, define a video object schema with custom properties, and stream play events back as viewers watch. The result is unified engagement reporting without the customer leaving HubSpot.

POST to /media-bridge/v1/{appId}/settings/register with the integrator details, then create a video schema via /media-bridge/v1/{appId}/schemas and send a sample media-played-percent event.

Audio Engagement Streaming

Podcast platforms can stream attention-span and play-percent events into HubSpot so that contact records show which episodes a known listener engaged with. The events feed into HubSpot lists, workflows, and reporting just like email opens or page views, allowing audio engagement to drive lead scoring.

For each completed listening session, POST to /media-bridge/v1/events/attention-span with the contactId, mediaId, and span seconds.

Schema Migration for Existing Integrators

When an integrator changes its media data model, properties and associations on existing HubSpot media object types must be updated together. Batch archive plus property creation endpoints support a controlled migration: archive deprecated fields, register new ones, and verify via the read endpoints before the new model is used in production.

POST a list of obsolete property names to /media-bridge/v1/{appId}/properties/{objectType}/batch/archive, create the replacement properties, and confirm the changes via /media-bridge/v1/{appId}/properties/{objectType}/batch/read.

Agent-Driven Media Object Setup

An AI agent onboarding a new media partner needs to define schemas and properties without operating the HubSpot UI. Through Jentic the agent searches for the schema creation operation, loads the input shape, and executes it with the partner's media model. Subsequent property and association calls follow the same search-load-execute flow.

Use Jentic to search 'create hubspot media bridge schema', load the schema, and execute it with objectType='video' and the partner's property definitions.

Key Endpoints

32 endpoints — the hubspot media bridge api lets external media platforms register their video and audio content with hubspot so it can be embedded, tracked, and reported on alongside other cms content.

METHOD

PATH

DESCRIPTION

POST

/media-bridge/v1/{appId}/settings/register

Register a media integrator app

POST

/media-bridge/v1/{appId}/schemas

Create a media object schema

POST

/media-bridge/v1/events/media-played-percent

Stream a media-played-percent event

POST

/media-bridge/v1/events/attention-span

Stream an attention-span event

POST

/media-bridge/v1/{appId}/properties/{objectType}/batch/archive

Archive properties in batch

POST

/media-bridge/v1/{appId}/properties/{objectType}/batch/read

Read properties in batch

GET

/media-bridge/v1/{appId}/settings/object-definitions

List object definitions for the integrator

POST

/media-bridge/v1/{appId}/settings/register

Register a media integrator app

POST

/media-bridge/v1/{appId}/schemas

Create a media object schema

POST

/media-bridge/v1/events/media-played-percent

Stream a media-played-percent event

POST

/media-bridge/v1/events/attention-span

Stream an attention-span event

POST

/media-bridge/v1/{appId}/properties/{objectType}/batch/archive

Archive properties in batch

POST

/media-bridge/v1/{appId}/properties/{objectType}/batch/read

Read properties in batch

GET

/media-bridge/v1/{appId}/settings/object-definitions

List object definitions for the integrator

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

HubSpot OAuth tokens, Private App tokens, and developer hapikeys are stored encrypted in the Jentic vault (MAXsystem). The agent only ever holds a scoped execution token, so the raw HubSpot secret never enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'create hubspot media bridge schema' or 'send media played percent event' and receive the matching operation plus a ready-to-execute input schema.

Time to first call

Time to first call

Direct integration: 3-5 days to register the app, define schemas, build event ingestion, and handle batch property updates. Through Jentic: a few hours from search to first ingested event.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

CMS Pages

→

Pages that often embed the media tracked through Media Bridge

Use CMS Pages when the agent needs to embed media, and Media Bridge to report on engagement with it.

Complementary

Blog Posts

→

Blog posts that embed and report on bridged media content

Use Blog Posts to surface media in editorial content; use Media Bridge to record engagement events.

Alternative

Files

→

Hosts media files directly on HubSpot rather than through an integrator

Choose Files when the customer wants HubSpot to store the media itself; choose Media Bridge when the platform of record is external.

FAQs

Specific to using Media Bridge API through Jentic.

What authentication does the HubSpot Media Bridge API use?

It accepts HubSpot OAuth 2.0 tokens or Private App tokens in the Authorization header, plus a developer hapikey query parameter for some integrator-management endpoints. Jentic stores both forms in its vault and exposes only a scoped execution token to the agent.

Can I store the actual video file in the Media Bridge?

No. The Media Bridge stores metadata, properties, and engagement events about media that lives on the integrator's platform. Video and audio bytes remain on the integrator's CDN; HubSpot only references them by ID.

What are the rate limits for the Media Bridge API?

It shares HubSpot's standard public API caps: 100 requests per 10 seconds for OAuth apps and 110 per 10 seconds for Private Apps on Pro and Enterprise. High-volume event ingestion should be batched where possible to stay under those limits.

How do I send a play event for a specific viewer through Jentic?

Run pip install jentic, search 'send hubspot media played percent event', load the schema, and execute it with the viewer's contactId, the mediaId, and the percentage played. Jentic posts to /media-bridge/v1/events/media-played-percent with the right auth headers.

Does the Media Bridge support custom event types beyond play percent and attention span?

Not in this spec. The two ingestion endpoints exposed are media-played-percent and attention-span. For richer behavioural tracking, pair Media Bridge with HubSpot's Custom Events API, which supports arbitrary event definitions.

GET STARTED

Start building with Media Bridge API

Explore with Jentic
View OpenAPI Document