If aDocumentation Index
Fetch the complete documentation index at: https://docs.manka.tz/llms.txt
Use this file to discover all available pages before exploring further.
callback_url was supplied when submitting via POST /analysis or POST /analysis-combined, Manka will POST the result to that URL when the job completes or fails.
Payload shape
Success
Always
"completed" on success.Matches the
task_id returned on submission.The full analysis output.
Failure
Always
"failed" on failure.Matches the
task_id returned on submission.Human-readable reason the analysis could not be completed.
Receiver recommendations
- Idempotency — key downstream actions on
task_idso a duplicate delivery is harmless. - Respond fast — acknowledge with
2xxand process out-of-band; avoid blocking on long downstream work. - Fall back to polling — because there are no retries, treat the callback as best-effort and pair it with
GET /analysis/:task_idif delivery is missed.

