ToolAssay

Applies AI edits to an image guided by a text instruction

Applies AI edits to an image guided by a text instruction. Pass the image as a URL and the edit as text. Choose the quality tier with image_generator_version: genius or super_genius for the highest detail at 2k output. The genius tier also takes an art style in genius_preference: classic, anime, photography, graphic, or cinematic. Returns a link to the edited image.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
289 msmedian answer time
$0.08listed price per call
$0.08price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://deepai.pay.zeroclick.io/api/image-editor

CategoryImage and media
Provider hostdeepai.pay.zeroclick.io
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days5 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.08 289 ms

Example input (from the provider)

{
  "body": {
    "genius_preference": "classic",
    "image": "https://example.com/photo.jpg",
    "image_generator_version": "genius",
    "text": "add a red hat"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "genius_preference": {
              "default": "classic",
              "description": "Art style for the genius tier. Used only when image_generator_version is \"genius\"; omit it for other tiers. Defaults to classic.",
              "enum": [
                "classic",
                "anime",
                "photography",
                "graphic",
                "cinematic"
              ],
              "example": "classic",
              "type": "string"
            },
            "image": {
              "description": "URL of the image to edit.",
              "example": "https://example.com/photo.jpg",
              "type": "string"
            },
            "image_generator_version": {
              "description": "Quality tier. Each tier bills its own per-image rate; super_genius renders at 2k.",
              "enum": [
                "genius",
                "super_genius"
              ],
              "example": "genius",
              "type": "string"
            },
            "text": {
              "description": "Edit instruction.",
              "example": "add a red hat",
              "type": "string"
            }
          },
          "required": [
            "image",
            "text",
            "image_generator_version"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON