# DeepAI Image Colorizer

> DeepAI Image Colorizer is a paid API for AI agents from deepai.pay.zeroclick.io, paid per call via x402 or MPP, $0.01/call, status unknown (last checked 2026-09-15).

Colorizes black and white or historic photos using AI, returning a URL to the colorized image.

## Facts

- Endpoint: POST https://deepai.pay.zeroclick.io/api/colorizer
- Price: $0.01/call
- Payment: x402, MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepai-image-colorizer-921c20e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xD-__Bc62B33JINGtQEOA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability deepai-image-colorizer-921c20e4 -d '<json body>'
```

Example prompt: Can you colorize this old black and white photo for me? Here's the image URL: https://example.com/old-family-photo.jpg

## When to prefer this

Choose this endpoint when you need to automatically add realistic color to grayscale or black and white photographs, especially historic or vintage images. It is ideal for single-image colorization tasks where you have a publicly accessible image URL and want a quick AI-driven result without manual editing tools.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Image URL pointing to a non-image resource causes processing failure
- Unsupported image format may result in an error
- Network timeout if the source image is very large or slow to fetch
- Payment failure if USDC balance is insufficient

## How this service works

Adds color to black and white photos and historic images. Pass the image as a URL. Returns a link to the colorized result.

## Output

Returns a URL pointing to the AI-colorized version of the input image, where the originally black and white or grayscale photo now has realistic, AI-generated colors applied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "image"
     ],
     "properties": {
      "image": {
       "type": "string",
       "example": "https://example.com/photo.jpg",
       "description": "URL of the image to colorize."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepai-image-colorizer-921c20e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deepai.pay.zeroclick.io](https://www.zero.xyz/host/deepai.pay.zeroclick.io/llms.txt)
