# Heurist Mesh: Image-to-Video with Audio (480p, 5s, Wan 2.5)

> Heurist Mesh: Image-to-Video with Audio (480p, 5s, Wan 2.5) is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Generates a 5-second 480p video with audio from an input image using the Wan 2.5 Preview model

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/WanVideoGenAgent/image_to_video_with_audio_480p_5s
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-image-to-video-with-audio-480p-5s-wan-2-5-58dc43a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qMYNswiT6zcVAap7fy2Sg

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-image-to-video-with-audio-480p-5s-wan-2-5-58dc43a5 -d '<json body>'
```

Example prompt: Can you animate this product photo into a short 5-second video clip with audio — take this image URL and use Wan 2.5 to generate a 480p video with sound from it?

## When to prefer this

Choose this endpoint when you need to animate a static image into a short video clip with audio in one step — specifically when you need 480p quality at 5 seconds and want the Wan 2.5 Preview model's output style. Prefer this over text-to-video endpoints when you already have a source image to animate, and over silent video generators when audio accompaniment is required.

## Known failure modes

- Invalid or inaccessible image URL returns an error
- Image format not supported by Wan 2.5 model
- Payment of $0.25 USDC not fulfilled via x402 protocol causes rejection
- Model generation timeout for complex or large input images
- Output video URL expires or becomes unavailable after a short window
- Network errors during video generation pipeline

## How this service works

Generate 5-second 480p video WITH AUDIO from image using Wan 2.5 Preview

## Output

A generated 5-second 480p video file with an accompanying audio track, produced by the Wan 2.5 Preview model from the provided input image. The response likely includes a URL or binary data for the output 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": [
      "prompt",
      "image_url"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "prompt": {
       "type": "string",
       "description": "Description of how the image should animate"
      },
      "image_url": {
       "type": "string",
       "description": "URL of the image to animate"
      },
      "prompt_extend": {
       "type": "boolean",
       "default": true,
       "description": "Whether to extend/enhance the prompt automatically"
      }
     }
    },
    "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-image-to-video-with-audio-480p-5s-wan-2-5-58dc43a5/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)
