Submits an image and its accompanying text together in a single moderation call, treating them as one unit. Returns a combined verdict with per-category scores and identifies which modality (text or image) drove each category flag.
You want to screen a post that has both a caption and an image as a single unit.
Checking text with no image, which the text check handles.
0.1 credits / check
Set these inside the intent when you run it.
The caption or text accompanying the image.
A publicly reachable URL of the image to check alongside the text. Must be under 20 MB and not behind a login.
An overall flagged verdict, a per-category flag map with confidence scores, and the modality (text or image) that triggered each category.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Content Moderation skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/content-moderation/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"moderate_multimodal","text":"Check out this incredible scene from last night.","image_url":"https://example.com/posts/image.jpg"}}'Example requests