# WithZero Sora 2 Pro Video Generation via ZeroClick

> WithZero Sora 2 Pro Video Generation via ZeroClick is a paid API for AI agents from agents.withzero.xyz, paid per call via MPP or x402, $5/call, status unknown (last checked 2026-09-14, last successful call 2026-06-16).

Generates high-quality AI video using OpenAI's Sora 2 Pro model, billed at $5 USDC per call through ZeroClick's pay-per-use proxy with no vendor account required.

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/video/videos/sora-2-pro
- Price: $5/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-06-16
- Success rate: 60% of calls made through Zero
- Rating: 4.7 / 5 from 1 review
- Activations on Zero: 7
- Tags: x402
- Canonical page: https://www.zero.xyz/c/withzero-sora-2-pro-video-generation-via-zeroclick-d9b0bf8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dgmV9FIb7bNlY03tUck0T

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 withzero-sora-2-pro-video-generation-via-zeroclick-d9b0bf8b -d '<json body>'
```

Example prompt: Generate a 5-second cinematic video of a golden retriever running through a field of sunflowers at sunset, using Sora 2 Pro — I'm happy to pay $5 for the best quality.

## When to prefer this

Choose this endpoint when you need state-of-the-art AI video generation using OpenAI's Sora 2 Pro model without setting up an OpenAI account or API key. Ideal for agents that need to autonomously pay per video generated using USDC cryptocurrency. Prefer this over alternatives when maximum Sora video quality is required (Sora 2 Pro tier) and when a pay-as-you-go model at $5/call is acceptable rather than a subscription.

## Known failure modes

- Invalid or missing input body returns 400 Bad Request
- Payment failure or insufficient USDC balance returns 402 Payment Required
- Prompt violates content policy and is rejected
- Generation timeout for complex or long video requests
- Malformed JSON body causing schema validation error
- Rate limiting if too many concurrent requests are made

## How this service works

Generate a video from a text prompt with OpenAI Sora 2 Pro — production-quality motion with synchronized audio. Returns a job id; poll the status route for the finished video URL.

## Output

Returns an AI-generated video created by OpenAI's Sora 2 Pro model based on the provided prompt and parameters. The response typically includes a video file or a URL to the rendered video clip.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "prompt": "A slow aerial shot over a foggy pine forest at dawn",
  "duration": 8
 },
 "required": [
  "prompt",
  "duration",
  "resolution"
 ],
 "properties": {
  "seed": {
   "type": "integer",
   "maximum": 9007199254740991,
   "minimum": -9007199254740991,
   "description": "Seed for repeatable generation (best effort)."
  },
  "prompt": {
   "type": "string",
   "maxLength": 4000,
   "minLength": 1,
   "description": "Text description of the video to generate."
  },
  "duration": {
   "anyOf": [
    {
     "type": "number",
     "const": 4
    },
    {
     "type": "number",
     "const": 8
    },
    {
     "type": "number",
     "const": 12
    },
    {
     "type": "number",
     "const": 16
    },
    {
     "type": "number",
     "const": 20
    }
   ],
   "default": 8,
   "description": "Clip length in seconds. One of: 4, 8, 12, 16, 20."
  },
  "resolution": {
   "enum": [
    "720p",
    "1080p"
   ],
   "type": "string",
   "default": "720p",
   "description": "Output resolution. One of: 720p, 1080p."
  },
  "aspect_ratio": {
   "enum": [
    "16:9",
    "9:16"
   ],
   "type": "string",
   "description": "Aspect ratio of the output. One of: 16:9, 9:16."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "job_id",
  "status",
  "model",
  "price_usdc",
  "poll_path"
 ],
 "properties": {
  "model": {
   "type": "string",
   "description": "The model generating the video."
  },
  "job_id": {
   "type": "string",
   "description": "Job id for the generation. Poll the status route with this id."
  },
  "status": {
   "type": "string",
   "const": "pending",
   "description": "The job has been accepted and is generating."
  },
  "poll_path": {
   "type": "string",
   "description": "Path of the free status route to poll for the finished video."
  },
  "price_usdc": {
   "type": "string",
   "description": "The amount charged for this generation, in USDC."
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/withzero-sora-2-pro-video-generation-via-zeroclick-d9b0bf8b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.withzero.xyz](https://www.zero.xyz/host/agents.withzero.xyz/llms.txt)
