Skip to content

Framewrite API

Everything Framewrite does in the browser is also a simple REST API — submit a job, poll for status, and pull down the finished document. Same pay-as-you-go pricing, no extra cost to integrate.

Terminal window
# 1. Submit a video
curl -X POST https://api.framewrite.cc/api/convert_to_doc \
-H "X-API-Key: YOUR_KEY" \
-F "video=@meeting.mp4"
# {"job_id": "5f2b6b3e-...", "status": "queued"}
# 2. Poll for status
curl "https://api.framewrite.cc/api/get_status?job_id=5f2b6b3e-..." \
-H "X-API-Key: YOUR_KEY"
# {"status": "done", "document_url": ".../document.md", ...}