# DeepAI Creative Upscale

> DeepAI Creative Upscale is a paid API for AI agents from deepai.pay.zeroclick.io, paid per call via x402 or MPP, $0.08/call, status healthy (last checked 2026-09-15, last successful call 2026-08-30).

Upscales a low-resolution image using AI with creative enhancement, adding detail and improving quality beyond standard super resolution.

## Facts

- Endpoint: POST https://deepai.pay.zeroclick.io/api/creative-upscale
- Price: $0.08/call
- Payment: x402, MPP
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-08-30
- Success rate: 100% of calls made through Zero
- Rating: 3.7 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepai-creative-upscale-445f3a63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kc5kNV6B78y2TGdBC9_lq

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-creative-upscale-445f3a63 -d '<json body>'
```

Example prompt: Can you creatively upscale this low-res photo for me — it's at https://example.com/photo.jpg and I need it much sharper and more detailed?

## When to prefer this

Choose the creative upscale endpoint over standard upscale when you want the AI to actively hallucinate and synthesize plausible new detail — not just interpolate pixels. Best for artistic images, old photos, or any case where perceptual quality matters more than strict pixel accuracy.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Image format not supported may cause processing failure
- Network timeout if source image is very large or slow to fetch
- Insufficient payment or wallet balance results in 402 payment required
- Rate limiting or quota exceeded on the underlying DeepAI API

## How this service works

Upscales an image while enhancing and adding detail. Pass the image as a URL. Returns a link to the upscaled result.

## Output

A link to the creatively upscaled, higher-resolution version of the input image, with AI-generated detail and enhancement applied beyond standard super resolution interpolation.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepai-creative-upscale-445f3a63/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)
