This walkthrough goes from “no key” to a downloaded MP4 using nothing butDocumentation Index
Fetch the complete documentation index at: https://docs.kodisc.com/llms.txt
Use this file to discover all available pages before exploring further.
curl. If you’d rather see typed examples, the API reference ships per-endpoint snippets in JavaScript and Python.
Create an API key
Open the developer dashboard, click New key, give it a name, and copy the
kdsc_live_… value. The plaintext is only shown once — store it somewhere safe.Want details on key format, rotation, and the optional default webhook URL? See Authentication.Enqueue a render
POST your Manim code to /api/v2/render. The response is immediate — you get a jobId, not a video.Response (202)
Poll until it's done
Hit
GET /api/v2/render/{jobId} every few seconds. When status flips to completed, the result object is populated.Response (200)
What to read next
Webhooks
Replace polling with a single signed POST per terminal state.
Errors
400, 401, 402, 404 — what each one means and how to recover.