{"name":"clean-text-pack","description":"Sanitizes raw text in one call: Unicode normalization, homoglyph audit, PII detection, and PII redaction. Returns the NFC-normalized string, a script/homoglyph/hidden-character audit (Cyrillic lookalikes, zero-width chars, RTL overrides), every PII match with risk level, and a fully redacted copy with [EMAIL]/[PHONE]/[SSN]-style masks. One paid call replaces four sanitization steps: ideal for log scrubbing, dataset prep, LLM input hygiene, phishing triage. Composite: one call runs text-normalize + unicode-normalize + detect-pii + pii-redact in parallel over the same text. Use it as a text sanitizer, GDPR-safe ingest pipeline, or input scrubber.","price":"$0.03","method":"POST","input_schema":{"properties":{"text":{"type":"string","description":"Raw text to clean and audit. Max 30000 chars."}},"required":["text"]},"input_example":{"text":"Email jоhn@acme.com (note the Cyrillic o) or call 555-867-5309."},"output_example":{"text_chars":63,"normalized":"Email jоhn@acme.com (note the Cyrillic o) or call 555-867-5309.","unicode":{"scripts_detected":["Latin","Cyrillic"],"is_mixed_script":true,"homoglyph_warnings":[{"position":7,"char":"о","looks_like":"o","suspected_script":"Cyrillic"}],"hidden_chars":[]},"pii":{"matches":[{"type":"email","value":"jоhn@acme.com"},{"type":"phone","value":"555-867-5309"}],"match_count":2,"risk_level":"medium"},"redacted":"Email [EMAIL] (note the Cyrillic o) or call [PHONE].","redactions":{"found":[{"type":"email","value":"jоhn@acme.com","masked_with":"[EMAIL]"}],"found_count":2},"composed_of":["text-normalize","unicode-normalize","detect-pii","pii-redact"],"components":[{"name":"text-normalize","ok":true,"ms":6},{"name":"unicode-normalize","ok":true,"ms":5},{"name":"detect-pii","ok":true,"ms":1400},{"name":"pii-redact","ok":true,"ms":1600}],"degraded":false},"x402_payment_required":true,"x402_facilitator":"https://api.cdp.coinbase.com/platform/v2/x402"}