The Kodisc public API has three endpoints. They live underDocumentation Index
Fetch the complete documentation index at: https://docs.kodisc.com/llms.txt
Use this file to discover all available pages before exploring further.
/api/v2/ on the production host and authenticate with a Bearer token.
OpenAPI spec
Download the full OpenAPI 3.1 spec that powers this reference.
Endpoints
| Method | Path | Purpose |
|---|---|---|
POST | /api/v2/render | Enqueue a render job |
GET | /api/v2/render/{jobId} | Poll a job’s status and result |
GET | /api/v2/me | Inspect the authenticated key and credit balance |
Conventions
- Authentication. Every request requires
Authorization: Bearer kdsc_live_…. See Authentication. - Content type. Requests and responses are JSON. Always send
Content-Type: application/jsononPOST. - Timestamps. All timestamps are ISO 8601 in UTC, e.g.
2026-04-28T17:14:02.118Z. - IDs. Treat all IDs (
jobId,keyId,userId) as opaque strings. - Versioning. This is
v2. Breaking changes ship asv3at a new path; the existing/api/v2/*surface stays stable. - Errors. Non-
2xxresponses always include anerrorfield. See Errors.