Skip to main content
POST
/
assert
/
evaluate
run all assertions and return results
curl --request POST \
  --url http://localhost:3917/assert/evaluate
{
  "failed": 0,
  "ok": true,
  "passed": 1,
  "results": [
    {
      "entity_id": 5,
      "message": "ok",
      "name": "hero-exists",
      "passed": true,
      "severity": "error"
    }
  ],
  "total": 1
}

Response

200 - application/json

Every registered assertion is evaluated against the live world; returns pass/fail totals and per-assertion results.