> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enkryptai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Detect Image

> Analyze an image with text using individual multimodal guardrails detectors



## OpenAPI

````yaml POST /guardrails/detect-image
openapi: 3.0.0
info:
  title: Enkrypt AI APIs
  version: 2.0.0
servers:
  - url: https://api.enkryptai.com
security:
  - apiKeyAuth: []
tags:
  - name: Guardrails
  - name: Code of Conduct
  - name: Endpoints
  - name: Datasets
  - name: Redteam
  - name: Deployments
  - name: AI Proxy
  - name: Leaderboard
  - name: Archived
  - name: MCP Hub
    description: >-
      MCP Hub vulnerability scanning APIs. Submitting scans (the POST endpoints)
      is open to all authenticated callers. The scan **retrieval** APIs — Get
      Scan Job Status, Get Complete Scan Results, List Scans, and Get MCP Hub
      Scan Statistics (the GET endpoints) — are an **enterprise data-license
      feature**: they require your organization to have MCP Hub API access
      enabled by Enkrypt, otherwise they return `403`. Contact us at
      support@enkryptai.com to enable access.
  - name: MCP Registry Servers
  - name: MCP Gateways
  - name: MCP Playground
paths:
  /guardrails/detect-image:
    post:
      tags:
        - Guardrails
      summary: >-
        Analyze an image with text using individual multimodal guardrails
        detectors.
      description: >-
        Takes a base64-encoded image, accompanying text input, and a detectors
        configuration. Runs the enabled detectors (toxicity, nsfw,
        injection_attack, pii, policy_violation) on the multimodal content and
        returns per-detector results in the same summary/details format as text
        guardrails.
      operationId: detectImage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DetectImageRequestBody'
      responses:
        '200':
          description: Multimodal image detection results.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MultimodalGuardrailsResponseBody'
              examples:
                safe_content:
                  summary: All detectors pass
                  value:
                    summary:
                      toxicity: 0
                      nsfw: 0
                      pii: 0
                    details:
                      toxicity:
                        toxicity: Toxicity Not Detected
                      nsfw:
                        nsfw: NSFW Not Detected
                      pii:
                        entities: {}
                unsafe_content:
                  summary: PII detected in image
                  value:
                    summary:
                      toxicity: 0
                      nsfw: 0
                      pii: 1
                    details:
                      toxicity:
                        toxicity: Toxicity Not Detected
                      nsfw:
                        nsfw: NSFW Not Detected
                      pii:
                        entities:
                          person:
                            John Doe: <person_0>
                          phone:
                            555-0123: <phone_0>
components:
  schemas:
    DetectImageRequestBody:
      title: DetectImageRequestBody
      type: object
      properties:
        text_input:
          type: string
          description: The text prompt to accompany the image for analysis.
        image_data:
          type: string
          description: Base64-encoded image file content.
        detectors:
          $ref: '#/components/schemas/MultimodalDetectorsConfig'
      required:
        - text_input
        - image_data
        - detectors
    MultimodalGuardrailsResponseBody:
      title: MultimodalGuardrailsResponseBody
      type: object
      required:
        - summary
        - details
      properties:
        summary:
          type: object
          description: Per-detector integer flags (1 = detected, 0 = not detected).
          additionalProperties:
            type: integer
            enum:
              - 0
              - 1
          example:
            toxicity: 0
            nsfw: 0
            pii: 1
            injection_attack: 0
            policy_violation: 0
        details:
          type: object
          description: >-
            Per-detector detail objects containing human-readable results and
            any extra fields (e.g. entities for PII, explanation for
            policy_violation).
          additionalProperties:
            type: object
          example:
            toxicity:
              toxicity: Toxicity Not Detected
            nsfw:
              nsfw: NSFW Not Detected
            pii:
              entities:
                person:
                  John Doe: <person_0>
            injection_attack:
              injection_attack: Injection Attack Not Detected
            policy_violation:
              policy_violation: Policy Violation Not Detected
    MultimodalDetectorsConfig:
      title: MultimodalDetectorsConfig
      type: object
      description: >-
        Configuration for multimodal detectors. Each key is a detector name with
        an object specifying its settings. Supported detectors: toxicity, nsfw,
        injection_attack, pii, policy_violation.
      properties:
        toxicity:
          type: object
          description: Toxicity detector configuration.
          properties:
            enabled:
              type: boolean
              description: Whether to run toxicity detection.
          required:
            - enabled
        nsfw:
          type: object
          description: NSFW detector configuration.
          properties:
            enabled:
              type: boolean
              description: Whether to run NSFW detection.
          required:
            - enabled
        injection_attack:
          type: object
          description: Injection attack detector configuration.
          properties:
            enabled:
              type: boolean
              description: Whether to run injection attack detection.
          required:
            - enabled
        pii:
          type: object
          description: PII detector configuration.
          properties:
            enabled:
              type: boolean
              description: Whether to run PII detection.
            entities:
              type: array
              items:
                type: string
              description: >-
                List of PII entity types to detect (e.g. person, phone, email,
                address, credit_card, ssn, date_of_birth, driver_license,
                passport, bank_account, ip_address). If omitted, all entity
                types are detected.
          required:
            - enabled
        policy_violation:
          type: object
          description: Policy violation detector configuration.
          properties:
            enabled:
              type: boolean
              description: Whether to run policy violation detection.
            policy_text:
              type: string
              description: The policy rules to check against. Required when enabled.
            need_explanation:
              type: boolean
              default: false
              description: >-
                Whether to include a brief explanation of the policy violation
                assessment.
          required:
            - enabled
      example:
        toxicity:
          enabled: true
        nsfw:
          enabled: true
        injection_attack:
          enabled: true
        pii:
          enabled: true
          entities:
            - person
            - phone
            - email
        policy_violation:
          enabled: true
          policy_text: No violent or illegal content allowed.
          need_explanation: true
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apikey

````