ReportCheck

AI engineering report fact-checker. Paid B2B API. Deterministic citation audit. No silent hallucinations.

engineering report API 510 API 570 PSM (OSHA 1910.119) citation audit hallucination detection paragraph-match unit-mismatch

What it does

Submit an engineering report (API 510 pressure vessel, API 570 piping, or PSM 1910.119 compliance audit) as JSON claims tagged with code + section. ReportCheck runs a deterministic paragraph-match against the canonical citation index and returns a structured audit response identifying every missing_citation, wrong_paragraph, and unit_mismatch — the three most common engineering-report hallucinations produced by general-purpose LLMs.

Pricing

$49 USDC per audit
Settled via x402 on Base. Per-audit price range $25 – $499 (MVP cap). Payments append to /opt/x402/data/revenue-ledger.json.

Privacy

POST /api/audit

First call returns 402 Payment Required with the x402 accepts envelope. Second call with X-PAYMENT returns 200 and the audit JSON.
POST /api/audit
Content-Type: application/json
X-PAYMENT: <base64 payment proof>

{
  "report_type": "API_510",
  "vessel_id": "V-101",
  "claims": [
    { "id": "c1",
      "claim_text": "MAWP shall not exceed nameplate rating...",
      "code": "API 510", "section": "5.4.1",
      "value": "150", "unit": "PSI" }
  ]
}

Response shape

{
  "report_type": "API_510",
  "findings": [ { "error_type": "missing_citation" | "wrong_paragraph" | "unit_mismatch" | null, ... } ],
  "citations_checked": 12,
  "hallucinations_detected": [...],
  "unit_errors": [...],
  "paragraph_mismatches": [
    { "cited_paragraph_text": "...", "expected_paragraph_text": "...", "jaccard_score": 0.04 }
  ],
  "confidence_score": 67,
  "privacy": { "mode": "NIM_ONLY", "retention_seconds": 60 }
}

Coverage

API 510
Pressure vessel inspection. MAWP, internal/external intervals, corrosion rate, remaining life, FFS triggers.
API 570
Piping inspection. Circuit classes, CMLs, corrosion rate (short/long), injection points, dead legs.
PSM 1910.119
OSHA Process Safety Management. PSI, PHA, operating procedures, training, MI, MOC, incident investigation.
Deterministic only
No LLM "judges". Paragraph-match uses canonical text + tokenized Jaccard score. Every flagged citation surfaces the exact paragraph the report cited vs the canonical text.