# Heurist Mesh WanVideoGenAgent - Get Video Status

> Heurist Mesh WanVideoGenAgent - Get Video Status is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Polls the status of a video generation task and returns the video URL when the task is complete

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/agents/WanVideoGenAgent/get_video_status
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-wanvideogenagent-get-video-status-ccf9f0b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WceCgwzs-qie4rhFbc-OT

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 heurist-mesh-wanvideogenagent-get-video-status-ccf9f0b9 -d '<json body>'
```

Example prompt: Check the status of my Heurist video generation task with ID 'abc123xyz' and give me the video URL if it's ready.

## When to prefer this

Use this endpoint after initiating a video generation job via text_to_video or image_to_video on Heurist Mesh, to poll for completion and retrieve the resulting video URL. This is the correct follow-up call in an async video generation workflow.

## Known failure modes

- Invalid or expired task_id returns an error or empty result
- Task still in progress returns a pending status without a video URL
- Network timeout if the status service is temporarily unavailable
- Malformed task_id format causes a validation error

## How this service works

Check the status of a video generation task and retrieve the video URL if completed.

## Output

Returns the current status of the video generation task and, if completed, provides the URL to the generated video file.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "task_id"
 ],
 "properties": {
  "debug": {
   "type": "boolean",
   "description": "Debug mode flag. ALWAYS use false."
  },
  "task_id": {
   "type": "string",
   "description": "The task ID returned from text_to_video or image_to_video."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-wanvideogenagent-get-video-status-ccf9f0b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
