# x402.agentutility.ai Event Poster Image Generator

> x402.agentutility.ai Event Poster 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-15).

Generates SFW event artwork, launch posters, and campaign background images from a text prompt using a fast AI image-generation backend

## Facts

- Endpoint: POST https://x402.agentutility.ai/event-poster-image-generate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-agentutility-ai-event-poster-image-generator-0eddb395
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6z6okYCpU6Bi5lZC-smZl

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 x402-agentutility-ai-event-poster-image-generator-0eddb395 -d '<json body>'
```

Example prompt: Generate a portrait-format event poster for our annual AI Summit — show a futuristic cityscape at night with glowing neon lights and a bold stage — use the 'creative' tier at 768×1024 pixels.

## When to prefer this

Choose this endpoint when you need original, custom SFW event imagery (posters, banners, campaign backgrounds) without relying on stock photo libraries. It is ideal for autonomous agents building event promotion pipelines or conference marketing workflows, and supports multiple model tiers (fast, creative, anime, sd35) to balance speed against stylistic control.

## Known failure modes

- Prompt exceeds 2000 characters — request rejected
- Width or height outside 256–1024 range — snapped or rejected
- Invalid model name provided — returns error
- Payment not provided or insufficient USDC — x402 payment required response
- Model tier enum value unrecognized — defaults or errors
- Prompt violates SFW content policy — generation refused or filtered

## How this service works

Generates SFW event artwork, launch posters, and campaign backgrounds without relying on stock art. Same fast image-generate backend. Use it as an event poster image generator API, conference visual tool, or meetup campaign image source.

## Output

Returns a JSON object containing the hosted image URL (on fal.media CDN), the model used for generation, and the output image dimensions (width and height in pixels).

## 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": "Random seed. Optional."
      },
      "tier": {
       "enum": [
        "fast",
        "creative",
        "anime",
        "sd35"
       ],
       "type": "string",
       "description": "Model shorthand. Default 'fast'."
      },
      "model": {
       "type": "string",
       "description": "Override the model. Must be one of: z-image-turbo, chroma, wai-Illustrious, venice-sd35."
      },
      "steps": {
       "type": "number",
       "description": "Diffusion steps. Optional; depends on model."
      },
      "width": {
       "type": "number",
       "description": "Output width in pixels. Range [256, 1024], snapped to multiples of 16. Default 1024."
      },
      "height": {
       "type": "number",
       "description": "Output height in pixels. Range [256, 1024], snapped to multiples of 16. Default 1024."
      },
      "prompt": {
       "type": "string",
       "description": "Image description. Up to 2000 chars."
      },
      "cfg_scale": {
       "type": "number",
       "description": "Classifier-free guidance scale. Optional."
      },
      "negative_prompt": {
       "type": "string",
       "description": "Negative prompt. Optional, up to 1000 characters."
      }
     }
    },
    "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",
     "required": [
      "image_url",
      "model",
      "width",
      "height",
      "source"
     ],
     "properties": {
      "seed": {
       "type": [
        "number",
        "null"
       ],
       "description": "Seed reported by the provider, when available."
      },
      "tier": {
       "enum": [
        "fast",
        "creative",
        "anime",
        "sd35"
       ],
       "t
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "z-image-turbo",
  "width": 768,
  "height": 1024,
  "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/x402-agentutility-ai-event-poster-image-generator-0eddb395/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)
