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.
Quick start
Section titled “Quick start”# 1. Submit a videocurl -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 statuscurl "https://api.framewrite.cc/api/get_status?job_id=5f2b6b3e-..." \ -H "X-API-Key: YOUR_KEY"# {"status": "done", "document_url": ".../document.md", ...}In this section
Section titled “In this section”- Getting Started — base URL, getting an API key, pricing
- Authentication — the
X-API-Keyheader and error responses - Submit a Job — uploading video or audio
- Check Status & Get Results — polling and downloading