# HyperCLI Text-to-Video

> HyperCLI Text-to-Video is a paid API for AI agents from api.hypercli.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Generates a video clip from a text prompt using AI, returning a render job with status and cancel URLs

## Facts

- Endpoint: POST https://api.hypercli.com/api/x402/flow/text-to-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/hypercli-text-to-video-99d8e2a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HOq6SDtxjklMLMdZOREDK

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 hypercli-text-to-video-99d8e2a8 -d '<json body>'
```

Example prompt: Generate a 1280x720 video of a cinematic sunset over a mountain range with dramatic clouds — make sure it doesn't include any people or text.

## When to prefer this

Choose this endpoint when you need programmatic, pay-per-call text-to-video generation at a fixed $0.25 USDC cost via x402 micropayment protocol, without subscription commitments. Prefer it for automated pipelines that need async video generation with webhook callbacks. Consider sibling endpoints (image-to-video, first-last-frame-video) if you have visual anchors rather than pure text.

## Known failure modes

- Payment failure (402): USDC payment not accepted or insufficient funds
- Invalid prompt (422): missing or empty prompt field
- Invalid dimensions (422): unsupported width/height values
- Job timeout: render job hangs and never completes — use cancel_url to abort
- notify_url unreachable: webhook delivery fails silently
- Rate limiting or server error (500): GPU capacity exceeded

## How this service works

text-to-video — fixed price $0.25

## Output

Returns a JSON object containing a render status object, an access_key for retrieving the result, a status_url to poll for completion, and a cancel_url to abort the job. The video is rendered asynchronously; poll the status_url to retrieve the finished video.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "width": {
   "anyOf": [
    {
     "type": "integer"
    },
    {
     "type": "null"
    }
   ],
   "default": null
  },
  "height": {
   "anyOf": [
    {
     "type": "integer"
    },
    {
     "type": "null"
    }
   ],
   "default": null
  },
  "prompt": {
   "type": "string"
  },
  "dry_run": {
   "type": "boolean",
   "default": false
  },
  "negative": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "default": null
  },
  "notify_url": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ],
   "default": null
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "render": {},
  "access_key": "example",
  "cancel_url": "example",
  "status_url": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hypercli-text-to-video-99d8e2a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hypercli.com](https://www.zero.xyz/host/api.hypercli.com/llms.txt)
