API v2.0

mujun.io

Contradiction detection as a service.

curl https://api.mujun.io/detect

Logic Analysis

Detect contradictions in logical statements, arguments, and conditional chains with semantic precision.

Conflict Resolution

Automated suggestions for resolving detected contradictions with ranked confidence scores.

Batch Processing

Analyze entire codebases, document sets, or policy collections for internal contradictions at scale.

POST /api/v2/detect
// Request
{
  "text": "All rules have exceptions, including this one.",
  "mode": "semantic"
}

// Response
{
  "contradictions": 1,
  "type": "self-referential",
  "confidence": 0.96
}