Skills/Content Moderation/Check text and image together

Check text and image together

0.1 credits / check

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.

Use when

You want to screen a post that has both a caption and an image as a single unit.

Not for

Checking text with no image, which the text check handles.

Cost

0.1 credits / check

What it accepts

Set these inside the intent when you run it.

textrequired

The caption or text accompanying the image.

image_urlrequired

A publicly reachable URL of the image to check alongside the text. Must be under 20 MB and not behind a login.

What you get back

An overall flagged verdict, a per-category flag map with confidence scores, and the modality (text or image) that triggered each category.

Run it

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

  • Check this social post: it has a caption and an attached photo
  • Is this image with its caption appropriate for a family audience?
  • Moderate this listing that has both a description and a product image