# Heurist Mesh: WanVideo Generation Status Check

> Heurist Mesh: WanVideo Generation Status Check 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-15).

Checks the status of a WanVideo AI video generation task and retrieves the video URL if the task has completed.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/WanVideoGenAgent/get_video_status
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-wanvideo-generation-status-check-2a938a21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TV1FprAZXRyazrv6yAwPT

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-wanvideo-generation-status-check-2a938a21 -d '<json body>'
```

Example prompt: Check the status of my WanVideo generation task with ID 'abc123' — if it's done, give me the video URL.

## When to prefer this

Use this endpoint after initiating a video generation task via WanVideoGenAgent to poll for completion and retrieve the output. Choose this when you need to asynchronously check job status rather than blocking on a long-running generation call. It is the correct follow-up step in any WanVideo generation workflow on Heurist Mesh.

## Known failure modes

- Invalid or unknown task ID returns an error or empty result
- Task still in progress returns status without a video URL
- Expired task IDs may return not-found errors
- Network or service timeout if the Heurist Mesh backend is overloaded
- Malformed request body returns a 400-level 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 (e.g. pending, processing, completed) and, if completed, the URL to download or stream the generated video.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "task_id"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "task_id": {
       "type": "string",
       "description": "The task ID returned from text_to_video or image_to_video."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-wanvideo-generation-status-check-2a938a21/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)
