Analyze text for compliance issues across GDPR, HIPAA, SOX, general corporate policy, or custom frameworks. Returns risk level, specific violations, and remediation recommendations. $0.03 USDC per call.
POST https://x402.ntriq.co.kr/compliance-check
Content-Type: application/json
X-PAYMENT: <x402-payment-header>
{
"text": "We store user passwords in plain text and share data with third parties.",
"framework": "GDPR",
"jurisdiction": "EU"
}
| Parameter | Type | Required | Description | |||
|---|---|---|---|---|---|---|
| ----------- | ------ | ---------- | ------------- | |||
text | string | ✅ | Text to analyze | |||
framework | string | ❌ | GDPR \ | HIPAA \ | SOX \ | general (default: general) |
jurisdiction | string | ❌ | US \ | EU \ | UK etc. (default: US) | |
language | string | ❌ | Output language (default: en) |
{
"status": "ok",
"compliant": false,
"risk_level": "critical",
"issues": [
{
"rule": "GDPR Art. 32 - Security of processing",
"description": "Plain text password storage violates security requirements",
"severity": "critical",
"recommendation": "Implement bcrypt or Argon2 password hashing"
}
],
"summary": "2 critical violations found requiring immediate remediation."
}
curl https://x402.ntriq.co.kr/services
共 1 个版本