Your agent has no reliable way to judge if content is unsafe; this scores text and images by category before you act on them.
Images
Analyzes text or images for harmful content, including hate speech, explicit material, violence, and spam. Returns an overall verdict together with per-category flags and calibrated confidence scores, so you can apply your own thresholds rather than trusting a single yes-or-no flag.
You want to check user or generated content for unsafe material before showing, storing, or acting on it.
Blocking or enforcement, reading text out of an image, virus or malware scanning, AI or deepfake detection, copyright or personal-data detection, or any legal reporting pipeline.
Each is a sub-skill of Content Moderation; the router picks the right one for your request.
information
Returns an overall flagged verdict, a per-category flag map, a per-category score from 0 to 1, and which modality triggered each category. It reports a verdict and never blocks; the caller decides what to do with it. Not a downloadable file.
It is unclear whether the content to check is text, an image, or both.
Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.
curl -X POST "https://skill.askfaro.com/skills/content-moderation/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Is this user comment safe to publish?"}}'Example requests