One click in CloviDecks sends your structured deck to CloviNarrate with all learning objectives, section titles, and speaker notes pre-filled. AI narration is generated per slide. You export a finished MP4 — no recording, no editing, no friction.
Every CloviTek tool is designed to hand off cleanly to CloviDecks. No API keys to configure, no data mapping — just click Connect.
Import from anywhere, export to everywhere. No lock-in, no format walls.
CloviDecks exposes a full REST API. Create decks, manage slides, trigger exports, and subscribe to real-time webhook events programmatically.
curl -X POST https://api.clovidecks.com/v1/decks \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "title": "Q3 Sales Review", "prompt": "10-slide deck covering quarterly revenue, churn, and pipeline", "template": "business-quarterly", "brand_id": "brnd_4f8a2c", "export": ["pdf", "mp4"], "narrate": true, "webhook_url": "https://example.com/hook" }'
{ "id": "deck_9b1e3f", "status": "generating", "slides": 10, "preview_url": "https://deck.cv/q3-sales", "exports": { "pdf": null, // populated on completion "mp4": null }, "created_at": "2026-06-11T14:22:00Z" }