Wording Diff Explorer

Pick two ingested NZ commercial-motor wordings to compare clause-by-clause. The diff is computed client-side from the verbatim wording-markdown twins at /api/product/{insurer}/{product}/wording.md — every paragraph anchored to its section path so changes line up.

Pick two wordings

Diff is computed client-side. Both wordings are fetched from the same /api/product/.../wording.md endpoints that LLM agents use — see /methodology for how they're extracted.

Pick two wordings above and click Compare.

Programmatic access

Want to diff wordings outside the browser? Fetch both markdown twins + run any standard diff library:

# Compare NZI vs QBE commercial motor wordings
curl -s https://businesscarinsurance.co.nz/api/product/nzi/commercial-motor/wording.md > nzi.md
curl -s https://businesscarinsurance.co.nz/api/product/qbe/commercial-motor/wording.md > qbe.md
diff -u nzi.md qbe.md | less

# Or via the MCP server with the compare_wordings tool (structured fact diff)
curl -s https://businesscarinsurance.co.nz/mcp -X POST \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"compare_wordings","arguments":{"fact_key":"excess_options_nzd"}}}'

Related