Idea prompt → video
The lowest-input skill. The user types one line ("Why honey never spoils") and
Revid handles everything: script, visuals, voice, music, cuts.
When to use this skill
Inputs
| Field | Required | Notes |
|---|
prompt | yes | The idea (one or two sentences) |
stylePrompt | no | Optional tone notes |
durationSeconds | no | Default 35 (s) |
aspectRatio | no | Default 9:16 |
Step-by-step
- Validate
prompt is non-empty.
- POST
/render.
- Poll
/status.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "prompt-to-video",
"source": {
"prompt": "{ONE_LINE_IDEA}",
"stylePrompt": "{OPTIONAL_TONE_NOTES}",
"durationSeconds": 35
},
"aspectRatio": "9:16",
"voice": { "enabled": true, "stability": 0.6, "speed": 1.0, "language": "en-US" },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": true, "syncWith": "beats" },
"media": {
"type": "stock-video",
"density": "medium",
"animation": "soft",
"quality": "pro",
"videoModel": "pro",
"imageModel": "good"
},
"options": {
"promptTargetDuration": 35,
"summarizationPreference": "summarizeIfLong",
"soundEffects": true,
"hasToGenerateCover": true
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
Examples
Failure modes
| Symptom | Fix |
|---|
| Script angle is generic ("Did you know…") | Add stylePrompt with a specific angle: "Open with a contrarian claim. End with a question that invites comments." |
| Off-niche visuals | Mention concrete subjects in the prompt: "Why honey never spoils — show beehives, ancient Egyptian jars, microscope close-ups of crystallized honey." |
| Too long / too short | Use durationSeconds AND options.promptTargetDuration together (some legacy paths only read one). |
See also