KLING 3.0
Marketers
Power your team to create
videos at scale
Creators
Building social presence made easy
Agency
Scale video production with
ease
This ready-to-use n8n workflow template automates your entire video clipping and sharing pipeline-simply import it and configure with your API token.
Download JSON
Get the pre-configured n8n workflow template.
Import to n8n
Create a new project and import the JSON file.
Authorization
Paste your API Key into the credentials field to authorize the connection.
Customize Your Workflow
Use our template as a head start—modify the logic, add nodes, or tweak parameters to fit your specific needs.
Add this skill to Claude Code or Cursor to trigger video clipping and social publishing directly within your development environment.
Upload zip
Add the Skill Zip file to your Claude Code or Cursor.
Command your agent
Start a new chat. Type your first request, like: "Find the viral moments in this URL and prep them for TikTok."
Authorization
When prompted, paste your API Key directly into the chat.
Review & Deploy
Preview clips in your IDE and give the final "Go" to push to all connected socials.

Vizard leverages the world’s leading AI models and select the best model to deliver the highest quality output in video repurposing.
Scale your content output by bridging the gap between AI editing and social distribution. The Vizard API allows you to trigger a full pipeline—from identifying viral moments to final publishing. Synchronizing your AI-optimized captions and posting schedules across all your connected social platforms at once.


With Vizard API, you can add your branding to video clips using customizable templates. Maintain a consistent and professional look across all your video content, ensuring brand recognition and trust.
Vizard API supports over 30 languages, making it the perfect solution for businesses looking to expand internationally. Connect with diverse markets by transforming your video content to engage audiences worldwide.

It’s fast to start building with Vizard AI clipping API
import requests
VIZARDAI_API_KEY = "YOUR_API_KEY"
headers = {
"VIZARDAI_API_KEY": VIZARDAI_API_KEY,
"Content-Type": "application/json"
}
// create_project
// query_clips
def main():
project_id = create_project()
query_clips(project_id)
if __name__ == "__main__":
main()