Hyperclip API

    The whole video stack.
    One endpoint.

    Trigger any flow you've built in the visual editor from your own code. Async runs, 26 node types, Node + Python SDKs, schema-driven inputs an AI assistant can read end-to-end.

    How it works

    Three steps from
    flow to finished MP4.

    Step 01

    Design

    Build the flow once in the visual editor. Drag in script, voice, captions, music, video — whatever shape your output needs.

    Step 02

    Trigger

    POST /runs with inputs that match the flow's schema. The API validates eagerly and returns a run ID.

    Step 03

    Collect

    Poll GET /runs/:id or use the SDK's wait() helper. When the run completes, you get a hosted video URL.

    Full reference
    import { Hyperclip } from "hyperclip";
    
    const hc = new Hyperclip({
      apiKey: process.env.HYPERCLIP_API_KEY,
      baseUrl: process.env.HYPERCLIP_BASE_URL,
    });
    
    const { id } = await hc.runs.create({
      flow_id: "<your-flow-id>",
      inputs: { prompts: { 0: "a lighthouse at dawn" } },
    });
    
    const run = await hc.runs.wait(id);
    console.log(run.video_url);

    Node catalog

    26 node types.
    One endpoint.

    Every node available in the editor runs server-side over the API. Mix and match into pipelines as deep as you need.

    Video
    • Text to video
    • Image to video
    • Animation
    • Multi-angle
    Image
    • Image generation
    • Mixed media
    Audio
    • Voiceover
    • AI music
    • Background audio
    • Audio overlay
    Text
    • Script generation
    • Text editor
    • AI transform
    • Parse scenes
    Editing
    • Clipping
    • Auto captions
    • Video editor
    • Continuity enhance
    Scraping
    • TikTok scraper
    • YouTube scraper
    • Media input

    Build it with AI

    Tell your AI assistant
    to ship a video pipeline.

    Every flow exposes its schema. Every error has a structured code. The API is built for LLMs to introspect, validate, and self-correct — so Claude Code, Codex, Cursor and the rest can write a working integration in one prompt.

    Recommended

    Hosted MCP server

    Point Claude Code, Cursor, Windsurf, or any MCP-aware client at one URL and your AI assistant gets live, searchable access to every doc page. It introspects the API instead of guessing it.

    {
      "mcpServers": {
        "hyperclip-docs": {
          "url": "https://docs.hyperclip.co/mcp"
        }
      }
    }
    Wire it up

    Drop the full docs in chat

    One click copies the entire docs site (~150–200k chars) to your clipboard. Paste into any frontier-model chat and tell it to ship a Hyperclip integration. Works with Claude Code, Codex, Cursor, Copilot — anything.

    Get the bundle

    Prime a session manually

    Paste a single doc page — quickstart, inputs reference, errors — and ask for exactly what you need. Best for targeted edits inside an existing project.

    What to paste

    Works with Claude Code · Codex · Cursor · Copilot · Windsurf

    Ship video generation
    this weekend.

    Grab a key, paste the quickstart into your AI assistant, and have a working integration before the kettle boils.