Getting Started
Base URL
Section titled “Base URL”All endpoints are served from:
https://api.framewrite.ccGet an API key
Section titled “Get an API key”Generate one from Settings → API Keys after signing in at
app.framewrite.cc. Keys are shown once, so save it somewhere safe —
send it with every request as an X-API-Key header. See Authentication
for details.
Pricing
Section titled “Pricing”Same pay-as-you-go pricing as the app, no extra cost to integrate:
| Type | Price |
|---|---|
| Video | $1.00/hour |
| Audio | $0.40/hour |
Video gets the full pipeline (diarized transcript, speaker labels, slides/diagrams pulled into a formatted document); audio gets a verbatim, speaker-tagged transcript only. See Submit a Job for both endpoints.
End-to-end example
Section titled “End-to-end example”# Submitcurl -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"}
# Poll until status is "done"curl "https://api.framewrite.cc/api/get_status?job_id=5f2b6b3e-..." \ -H "X-API-Key: YOUR_KEY"
# Download the resultcurl -O "https://api.framewrite.cc/api/documents/5f2b6b3e-.../document.md" \ -H "X-API-Key: YOUR_KEY"Next: Authentication →