Enterprise · API

Put “document → full deck”
into a capability of your product

For SaaS, collaboration, education and data platforms. Your users click once in your UI and get a presentable, editable PPTX tens of minutes later — Freppit handles generation and layout.

① Submit a job

Send source (doc / URL / topic), an optional template and a callback URL; get a job ID instantly.

POST /api/b/v1/decks
X-API-Key: pk_your_key

source_kind=doc  file=@brief.docx
template_id=tpl_xxx
callback_url=https://your.app/hooks

→ {"id": "…", "status": "queued"}
② Async rendering

~20–34 minutes per job, task-based. Poll status and per-page progress, or just wait for the callback.

GET /api/b/v1/decks/:id

→ {
  "status": "rendering",
  "pages_done": 6,
  "pages_total": 12
}
③ Webhook delivery

On completion we call your URL with download links: PPTX, speaker notes, SVG thumbnails.

POST https://your.app/hooks
X-Webhook-Event: deck.done
X-Webhook-Signature: sha256=…

{"status": "done",
 "pptx_url": "…", "notes_url": "…"}

Four capabilities, callable separately

Script generation

Source → page-by-page outline (titles + bullets). Take just the script and run your own review step before rendering.

Style extraction

.pptx → palette and type tokens, saved as a reusable template ID. Brand-family style match, not a 1:1 replica.

Full rendering

Script + template → editable PPTX with speaker notes. Every page is real text and shapes your users can keep editing.

Page regeneration

Attach one line of feedback to a page and redo that page. The page is the smallest unit — no element-level endpoint.

Async by design20–34 min per jobpoll or webhook
Transparent statusfailed jobs return a reasonpoll per-page progress
Failures cost nothingfailed jobs return a reasonno credits consumed
True to sourceno invented facts or entitiestraceable content

Integration starts with an email

API access is by application: tell us your scenario and we'll come back with docs, a sandbox key and volume pricing. Usually within 1–2 business days.

  • Usage-based credit billing, volume discounts at scale
  • Free sandbox to validate results before committing

Or write to us directly: api@freppit.com