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_KEYis 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
| Goal | Use |
|---|---|
| Full automation / UI parity | Session auth + REST routes under /api/ (REST API) |
| Simple library browse for external tools | X-Api-Key on /api/watchlist, /api/comics, /api/comic/... |
| Mylar3 import | First-run migration wizard, or POST /api/system/migration/preview / start / GET .../progress with a session |
| Comic reader integration | OPDS 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.