# Omnicall Video Generation Endpoint

> Omnicall Video Generation Endpoint is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-10).

Generates video content via a pay-per-call gateway using a path argument to specify the video generation task, paid in USDC on Base or Solana.

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/ai/video/%7Barg%7D
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-video-generation-endpoint-1fc1287c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DkX6M79q4bzzzfksRmQ1F

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 omnicall-video-generation-endpoint-1fc1287c
```

Example prompt: Can you generate a short AI video of a sunset over the ocean with calm waves, using Omnicall's video endpoint — I'll pay the $0.20 USDC fee per call?

## When to prefer this

Choose this endpoint when you need on-demand AI video generation without a pre-registered API key, want to pay per call in USDC (Base or Solana), and prefer an OpenAI-compatible interface. Ideal for agents running crypto-native workflows or needing zero-setup access to AI video generation.

## Known failure modes

- Payment not received — 402 response indicating USDC payment required
- Invalid path argument — 400 or 404 if the video model or task identifier is unrecognized
- Generation failure — model returns error if prompt is unsupported or violates content policy
- Timeout — video generation may take extended time and exceed gateway limits
- Insufficient funds — wallet balance too low to cover $0.20 USDC fee

## How this service works

Omnicall is the all-in-one agent gateway: 247 LLMs plus image, video, voice & music generation, live crypto/DeFi/prediction-market data, web search and on-chain reads — one OpenAI-compatible endpoint, pay per call in USDC on Base or Solana, no API key.

## Output

A generated video artifact (file or streaming URL) produced by the AI video generation model specified in the path argument, returned after payment of $0.20 USDC on Base or Solana.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omnicall-video-generation-endpoint-1fc1287c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from omnicall.gocreativeai.com](https://www.zero.xyz/host/omnicall.gocreativeai.com/llms.txt)
