Create a scoped API key.
Use API keys in the Starzero app’s settings. Start with a processed library you can access. Search requires library:search; reading analysis resources requires appropriate library access such as library:read.
Turn footage into searchable moments, structured context, and new productions. Build with individual APIs or connect your assistant to Starzero’s media and production tools through MCP.
Find visual content and dialogue at moment, shot, scene, or media boundaries.
Use transcripts, summaries, speakers, narrative threads, scenes, and shot data.
Connect reframing, rendering, agent chats, and workflow orchestration to your product.
Start with one capability. Connect understanding and production wherever they belong in your application.
Put natural-language search inside your own media application. Search visual content and dialogue across a library, then use returned media and time boundaries to take users to the relevant footage.
Explore the search request ↓POST /library/{libraryId}/search/unifiedUse short and detailed summaries, follow narrative threads through scenes, and inspect shot boundaries. Connect transcript segments to speakers and use annotated names where available.
Retrieve an analysis resource ↓GET /library/{libraryId}/media/{mediaId}/data/{resource}Assemble material from several videos, reframe a segment, or give a production brief to Starzero’s agents. Connect longer workflows to the systems that receive and review the output.
Connect the production tools ↓create_compilationreframe_mediaagent_create_chatUse the REST API for direct integration, or the remote MCP server to give a compatible assistant access to Starzero tools.
Use API keys in the Starzero app’s settings. Start with a processed library you can access. Search requires library:search; reading analysis resources requires appropriate library access such as library:read.
Replace the placeholders with your library ID and key. This request combines visual and transcript search with scene boundaries.
curl -X POST \
"https://api.starzero.ai/library/YOUR_LIBRARY_ID/search/unified" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"text":"a speaker discussing the product launch","visualBoundary":"scene"}'The response includes search results and related media records. Use the actual returned media IDs for the next request.
Use an accessible media ID to retrieve a summary. Other resources include narrative_threads, scenes, shots, and speakers.
curl --location \
"https://api.starzero.ai/library/YOUR_LIBRARY_ID/media/YOUR_MEDIA_ID/data/summary" \
-H "Authorization: Bearer YOUR_API_KEY"Examples require your account and processed media. Keep keys in your own trusted environment; this page does not accept or execute them.
Use the remote server address below in an MCP-compatible assistant and follow its authorization flow. The client and your account access determine which actions are available.
https://mcp.starzero.ai/mcpAsk the assistant to list your libraries, search the selected library, and retrieve the transcript or source context for relevant media.
list_librariessearch_unifiedsearch_visualget_transcript_fullBring relevant material into an agent chat, create a compilation, or reframe a segment. Orchestrate larger jobs and inspect their progress through the available task tools.
agent_create_chatcreate_compilationreframe_mediataskulator_launch“Find the product-demo moments in this library, show me the candidates, then have Starzero build a captioned portrait cut.”
The Starzero MCP server exposes media and production tools to compatible clients. Separately, you can connect external MCP plugins inside Starzero so its agents can work with other services alongside the built-in video tools.
For recurring jobs, use workflow templates, variables, task budgets, and result callbacks. Scope an integration around the actual processing lifecycle and the systems receiving the output.
Explore workflow operations ↗Yes. Rendering, reframing, and generation can be long-running work. Plan for progress tracking, suitable timeouts, and result handling. Workflow callbacks can connect job completion to your systems.
Discuss expected media volume, concurrency, operations, and delivery requirements with the team. Account access, credits, and endpoint limits apply; confirm the commercial arrangement before sizing a production integration.
Yes. You can use the media understanding and search surfaces without building a full editor. Add reframing, rendering, or agent production where your product needs them.