Documentation Index
Fetch the complete documentation index at: https://docs.knowlify.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
After submitting an edit, use the returnededit_id to poll for progress. The endpoint accepts the same X-API-Key you used to create the edit, and only the original submitter (or an active member of the submitter’s organization) may read the edit.
Your
API_BASE is shown in the Developer tab of your dashboard. The default production base is https://api.knowlify.com.Authentication
Send your key in theX-API-Key header — the same key (personal or organization) that submitted the edit.
Path parameters
The edit ID returned by
POST /v1/edits.Code examples
Response
The edit ID (echoes the path parameter).
The video this edit was submitted against.
Current state. One of:
queued— another edit on the same video is in flight; this one will run after it finishes.processing— phase 1 (Claude edit) is running.applying— phase 3 (video sync) is running.complete— all three phases finished successfully.error— a phase failed. Seeerror_message.reverted— this edit was undone byPOST /v1/edits/{edit_id}/revert.
true when status is complete or reverted.true when status is error. Inspect error_message.Present once
status is complete or reverted.Human-readable failure reason.
null on healthy edits.ISO-8601 timestamp when the edit was accepted.
ISO-8601 timestamp of the last status change. Use this to detect stalled edits.
Example response (mid-flight)
Example response (complete)
Limits & errors
- The polling endpoint shares the 10 requests / 60 seconds rate limit with
POST /v1/edits. See Rate Limits. - Full status code reference: Errors.
