> ## 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 with Policy (Legacy)

> Analyzes an image with text using a saved policy.

<Warning>
  **Archived**: This endpoint is legacy. Use the new [Guardrail Detect Image](/api-reference/guardrails-api-reference/endpoint/guardrail-detect-image) endpoint instead, which supports separate input/output detectors via `X-Enkrypt-Mode`.
</Warning>


## OpenAPI

````yaml POST /guardrails/policy/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/policy/detect-image:
    post:
      tags:
        - Archived
      summary: Detect Image Using Policy
      description: Analyzes an image with text using a saved policy.
      operationId: policy_detect_image
      parameters:
        - name: X-Enkrypt-Policy
          in: header
          required: true
          schema:
            title: Policy Name
            type: string
            description: The policy name
            example: Test Guardrails Policy
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PolicyDetectImageRequest'
      responses:
        '200':
          description: Multimodal image detection results.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MultimodalGuardrailsResponseBody'
      deprecated: true
components:
  schemas:
    PolicyDetectImageRequest:
      title: PolicyDetectImageRequest
      type: object
      description: >-
        Request body for policy-based image detection. Detectors are defined by
        the policy; no inline detectors config is needed.
      properties:
        text_input:
          type: string
          description: The text prompt to accompany the image for analysis.
          example: Help me with the content in this image
        image_data:
          type: string
          description: Base64-encoded image file content.
          example: <base64-encoded-image-data>
      required:
        - text_input
        - image_data
    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
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apikey

````