# AgentUtility Ad Creative Image Generator

> AgentUtility Ad Creative Image Generator is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Generates ad creative images using the Chroma model via Venice, returning a hosted image URL at 1024x624 resolution

## Facts

- Endpoint: POST https://x402.agentutility.ai/ad-creative-image-generate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-ad-creative-image-generator-b11aa64d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HSWDrIZY94uZUGXcjDuLq

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 agentutility-ad-creative-image-generator-b11aa64d -d '<json body>'
```

Example prompt: Generate an ad creative image for my new running shoes brand 'SwiftStride' — something energetic and bold, 1024x624, using the Chroma model — I need it for a display ad campaign.

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.01 USDC) AI-generated ad creative image at a standard 1024x624 display ad resolution, specifically using the Chroma model via Venice, and you are operating in an autonomous agent context with x402 payment support on Base.

## Known failure modes

- Invalid or missing prompt input returns an error
- Payment failure via x402 if USDC balance is insufficient
- Model unavailability from Venice/fal.media backend causes 5xx error
- Malformed request body returns 400 bad request
- Generated image CDN link may expire after a period

## How this service works

Generates ad creative images: SFW marketing visuals, concept images, and campaign thumbnails from prompts. Same backend as image-generate. Use it as a campaign visual generator or paid social creative API.

## Output

Returns a JSON object containing the model used (e.g. 'chroma'), image dimensions (width: 1024, height: 624), the source provider ('venice'), and a hosted image URL pointing to the generated ad creative (e.g. a fal.media CDN link).

## 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": {
     "required": [
      "prompt"
     ],
     "properties": {
      "seed": {
       "type": "number",
       "description": "Optional integer seed for reproducible output."
      },
      "tier": {
       "enum": [
        "fast",
        "creative",
        "anime",
        "sd35"
       ],
       "type": "string",
       "description": "Model shorthand: 'fast' (z-image-turbo), 'creative' (chroma), 'anime' (wai-Illustrious), or 'sd35' (venice-sd35). Default fast."
      },
      "model": {
       "type": "string",
       "description": "Explicit Venice model override, restricted to this endpoint's cheap allow-list. Use tier instead unless you need a specific model."
      },
      "steps": {
       "type": "number",
       "description": "Optional diffusion step count passed to Venice."
      },
      "width": {
       "type": "number",
       "description": "Output width in px, 256-1024. Snapped to a multiple of 16. Default 1024."
      },
      "height": {
       "type": "number",
       "description": "Output height in px, 256-1024. Snapped to a multiple of 16. Default 1024."
      },
      "prompt": {
       "type": "string",
       "description": "Image description. Up to 2000 chars."
      },
      "cfg_scale": {
       "type": "number",
       "description": "Optional classifier-free guidance scale passed to Venice."
      },
      "negative_prompt": {
       "type": "string",
       "description": "Optional text describing what to avoid in the image."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "model": {
       "type": "string"
      },
      "width": {
       "type": "integer"
      },
      "height": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "image_url": {
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "chroma",
  "width": 1024,
  "height": 624,
  "source": "venice",
  "image_url": "https://v3.fal.media/files/abc/xyz/image.png"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-ad-creative-image-generator-b11aa64d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
