# Venice AI Audio Complete

> Venice AI Audio Complete 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 an audio generation request as complete and deletes the generated media from storage after successful download.

## Facts

- Endpoint: POST https://api.venice.ai/api/v1/audio/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-audio-complete-b658abf4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7HvWRW1q75ivoMCev0Fnx

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-audio-complete-b658abf4 -d '<json body>'
```

Example prompt: I've finished downloading the audio — go ahead and mark queue job 123e4567-e89b-12d3-a456-426614174000 as complete using the elevenlabs-music model and clean up the generated file from Venice's storage.

## When to prefer this

Use this endpoint after you have successfully downloaded audio generated via Venice AI and did not set delete_media_on_completion during retrieval — it is the designated cleanup step to free storage and finalize the job lifecycle. Do not use it to check status or retrieve audio; use the Retrieve endpoint for that.

## Known failure modes

- Invalid or already-completed queue_id returns an error
- Unknown model ID results in request rejection
- 402 Payment Required if x402 wallet balance is insufficient
- Queue ID not found if audio was already cleaned up or expired
- Authentication failure if API key or x402 header is invalid or missing

## How this service works

Queue and wait for audio generation.

## Output

A JSON object with a single boolean 'success' field indicating whether the audio cleanup and completion marking was successful.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "model",
  "queue_id"
 ],
 "properties": {
  "model": {
   "type": "string",
   "example": "elevenlabs-music",
   "description": "The ID of the model used for audio generation."
  },
  "queue_id": {
   "type": "string",
   "example": "123e4567-e89b-12d3-a456-426614174000",
   "description": "The ID of the audio generation request. Use this to poll for status and retrieve the result."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/venice-ai-audio-complete-b658abf4/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)
