# Venice AI Video Complete (Delete After Download)

> Venice AI Video Complete (Delete After Download) is a paid API for AI agents from api.venice.ai, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Marks a video generation request as complete and deletes it from storage after successful download.

## Facts

- Endpoint: POST https://api.venice.ai/api/v1/video/complete
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/venice-ai-video-complete-delete-after-download-44370843
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AMWZFWmzK5UCgVT9COiJX

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 venice-ai-video-complete-delete-after-download-44370843 -d '<json body>'
```

Example prompt: Clean up the video generation job I just downloaded — the model is video-model-123 and the queue ID is 123e4567-e89b-12d3-a456-426614174000, so go ahead and delete it from Venice AI storage.

## When to prefer this

Use this endpoint when you need to explicitly delete a Venice AI video generation job from storage after downloading the output, especially when you did not set delete_media_on_completion=true at retrieval time and want manual control over cleanup timing.

## Known failure modes

- Queue ID not found — video may have already been deleted or never existed
- Invalid model ID — mismatch between model and queue ID
- 402 Payment Required — insufficient USDC balance for the $10 per-call fee
- 401 Unauthorized — missing or invalid Bearer token or X-Sign-In-With-X header
- Video not yet downloaded — attempting to delete before retrieval is complete
- 400 Bad Request — missing required fields model or queue_id

## How this service works

Queue and wait for video generation.

## Output

A JSON object with a single boolean field 'success' indicating whether the video storage cleanup completed successfully.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "model",
  "queue_id"
 ],
 "properties": {
  "model": {
   "type": "string",
   "example": "video-model-123",
   "description": "The ID of the model used for video generation."
  },
  "queue_id": {
   "type": "string",
   "example": "123e4567-e89b-12d3-a456-426614174000",
   "description": "The ID of the video generation request."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "success": {
   "type": "boolean",
   "example": true,
   "description": "Indicates whether the video cleanup was successful."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/venice-ai-video-complete-delete-after-download-44370843/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.venice.ai](https://www.zero.xyz/host/api.venice.ai/llms.txt)
