# GRAWWWW Image Render

> GRAWWWW Image Render is a paid API for AI agents from grawwww.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Submits an AI image generation job for character-led scenes based on a text prompt, returning a job ID and polling URL for the finished render.

## Facts

- Endpoint: POST https://grawwww.xyz/api/render/image
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grawwww-image-render-b437c50c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DR60i40Ev6V4kd0ygrsjb

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 grawwww-image-render-b437c50c -d '<json body>'
```

Example prompt: Can you render an image on GRAWWWW of a lone samurai standing at the edge of a misty cliff at sunset, in 16:9 widescreen?

## When to prefer this

Choose this endpoint when you need AI-generated character-led images with flexible aspect ratios on a pay-per-render basis with no subscription required. It is especially well-suited for creative workflows, storytelling, game concept art, or social media content where a specific character or scene is described via prompt. It uses an async polling model so it is best when the agent can handle a delayed result.

## Known failure modes

- Invalid or missing prompt returns an error response
- Unsupported aspect_ratio value may cause a validation error
- Payment failure (insufficient USDC or x402 protocol error) prevents job creation
- Render job may fail or time out on the provider side, reflected in status polling
- Status URL returns pending indefinitely if the render queue is backed up

## How this service works

An independent AI studio for character-led video and images. Your references. Your next scene. Pay per render.

## Output

Returns a JSON object with ok: true, a job_id string, and a status_url to poll (for free) until the finished render's asset URL is available. The image asset URL is not returned immediately — the agent must poll the status URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string",
   "description": "What to generate. Required."
  },
  "aspect_ratio": {
   "type": "string",
   "description": "Optional aspect ratio, e.g. 16:9 or 9:16."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "note": "Poll status_url (free) until it returns the asset URL of the finished render.",
  "job_id": "0b1c2d3e",
  "status_url": "https://grawwww.xyz/api/jobs/0b1c2d3e"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grawwww-image-render-b437c50c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grawwww.xyz](https://www.zero.xyz/host/grawwww.xyz/llms.txt)
