Legacy API

The Mylar3 cmd-dispatch API is not available in current Comicarr.

Status

Comicarr’s HTTP layer is FastAPI. The historical Mylar3 command-dispatch API:

GET /api?cmd=COMMAND&apikey=YOUR_KEY

is not implemented. There is no cmd= router and no Mylar3 command table in the running app.

Older documentation and third-party scripts that call getIndex, getComic, findComic, previewMigration, and similar commands will not work against modern Comicarr without updates.

What to use instead

GoalUse
Full automation / UI paritySession auth + REST routes under /api/ (REST API)
Simple library browse for external toolsX-Api-Key on /api/watchlist, /api/comics, /api/comic/...
Mylar3 importFirst-run migration wizard, or POST /api/system/migration/preview / start / GET .../progress with a session
Comic reader integrationOPDS at /opds

Historical note

Mylar3 exposed dozens of cmd= operations for scripts and integrations. Comicarr keeps the domain model and config heritage of Mylar3 but serves a modern REST surface. If you maintain an external integration, migrate it to the REST routes above rather than expecting cmd compatibility.

On this page