# GRAWWWW Video Render

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

Generates a character-led AI video clip from a text prompt, returning a job ID and polling URL for async retrieval.

## Facts

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

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-video-render-09d588e9 -d '<json body>'
```

Example prompt: Can you use GRAWWWW to render me a 10-second video clip of a detective walking through a neon-lit rainy street at night, in 16:9 format?

## When to prefer this

Choose this endpoint when you need to generate short character-driven or narrative video clips from a text prompt, especially when you want pay-per-render pricing with no subscription. Ideal for agents orchestrating creative content pipelines where async rendering is acceptable. Prefer over image endpoints when motion and temporal storytelling are required.

## Known failure modes

- Prompt missing — returns error if no prompt is provided
- Duration out of range — must be between 4 and 15 seconds
- Invalid aspect ratio format — should be e.g. 16:9 or 9:16
- Payment failure — x402 payment of 0.5 USDC must succeed before render starts
- Job still pending — polling status_url may return in-progress status until render completes
- Render failure — job may fail and status_url will reflect an error state

## 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 a job_id string and a status_url string. The video is rendered asynchronously; the agent should poll the status_url (which is free) until it returns the completed asset URL for the finished video clip.

## 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."
  },
  "duration_seconds": {
   "type": "number",
   "maximum": 15,
   "minimum": 4,
   "description": "Clip length in seconds (4-15). Default 5."
  }
 }
}
```

## 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-video-render-09d588e9/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)
