revid-shopify-product-promo
Turn a Shopify (or any e-commerce) product page URL into a 30–45 second 9:16 promo video ready for TikTok / Reels / Shorts. Use when the user shares a product link and wants a short ad/promo, not a long-form review.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-shopify-product-promoShopify product → promo video
Take a product page URL and produce a vertical promo video that pulls the product image(s), name, key features, and price.
When to use this skill
- Input is a single product page URL from Shopify, WooCommerce, BigCommerce, or any storefront with crawlable HTML (most stores).
- Output goal is a promo / ad / launch teaser, 30–45 s, vertical (9:16).
- The user wants Revid to extract the product details automatically. If they
hand you a script instead, use
revid-script-to-video. - For a generic ad written from a product description (no live URL), use
revid-product-description-to-ad.
Inputs
| Field | Required | Notes |
|---|---|---|
url | yes | Public product page URL |
aspectRatio | no | Defaults to 9:16 |
targetDuration | no | Defaults to 35 (s) |
voiceId | no | Default voice if omitted |
webhookUrl | no | Skip polling if you can receive webhooks |
Step-by-step
- Validate the URL — must start with
http(s)://. Reject obvious non-product paths (/cart,/blog,/collections/all). - Optional pre-flight — fetch the URL once with
HEADto confirm it returns 200. If 4xx, ask the user to confirm the link. - Build the payload (see template). Defaults are tuned for product promo:
high
density, dynamic animation, captions ON, music ON. - POST
/api/public/v3/render— capture the returnedpid. - Poll
/status?pid=…with the canonical loop (see Polling section below) or wait for the webhook. - Return
{ pid, status, videoUrl, thumbnailUrl, durationSeconds, creditsUsed }.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "article-to-video",
"source": {
"url": "{PRODUCT_URL}",
"scrapingPrompt": "Extract the product name, hero image, 3 key features, and price. Ignore reviews, related products, footer, and navigation."
},
"aspectRatio": "9:16",
"voice": { "enabled": true, "stability": 0.55, "speed": 1.05, "language": "en-US" },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": true, "syncWith": "beats", "trackName": "uplifting-pop" },
"media": {
"type": "stock-video",
"density": "high",
"animation": "dynamic",
"quality": "pro",
"imageModel": "good",
"videoModel": "pro",
"turnImagesIntoVideos": true,
"applyStyleTransfer": false
},
"options": {
"targetDuration": 35,
"summarizationPreference": "summarize",
"hasToGenerateCover": true,
"coverTextType": "product-name",
"soundEffects": true,
"addStickers": false
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-api00-revid-shopify-product-promo": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
revid-article-to-short
Turn any news article or long-form post URL into a 30–60 second 9:16 short with stock visuals, narration, and captions. Use when the user shares a link and wants an edited summary, not a talking-head.
revid-news-to-daily-short
Generate a daily news short on a topic Revid researches itself. Use for a recurring "news of the day in <niche>" channel — the user only supplies the topic; Revid fetches fresh news, writes the script, and produces the video.
revid-api-foundations
Foundation knowledge for every Revid skill — auth, the single render endpoint, the workflow discriminator, polling, webhooks, and the response envelope. Load this once at session start; specific skills build on it.
revid-blog-to-avatar-video
Turn a blog post URL into a talking-head avatar video — the avatar reads a summarized script of the post against a clean background. Use when the user wants a personal/expert delivery vs an edited promo.
revid-pdf-to-video
Turn a PDF (whitepaper, ebook chapter, slide deck export, research paper) into a short summary video. Use when the source is a PDF URL or a PDF the agent can upload to public storage first.