ToolAssay

Async music/audio-track generation on Venice (Stable Audio, ElevenLabs Music, Mi

Async music/audio-track generation on Venice (Stable Audio, ElevenLabs Music, MiniMax, Lyria, ACE-Step), paid per request in USDC on Base via x402, no API key. Short-clip model ids via GET /api/v1/models?type=music; 60s-floor ids (ACE-Step) only with ?floor=all. Lifecycle: quote,

Answeringour last check, 2026-09-24
1 of 1checks answered this week
559 msmedian answer time
$0.095listed price per call
$0.095price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://x402.aispace.bot/api/v1/audio/queue

CategoryImage and media
Provider hostx402.aispace.bot
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days13 from 6 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.095 559 ms

Example input (from the provider)

{
  "body": {
    "duration_seconds": 5,
    "lyrics_prompt": "Optional lyrics for vocal tracks.",
    "model": "stable-audio-25",
    "prompt": "Upbeat lo-fi hip hop with a warm vinyl texture, 90 BPM"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "duration_seconds": {
              "description": "Clip length in seconds. Must sit between this model's min_duration and max_duration. Copy duration from the catalog row \u2014 a 60s-floor id cannot make a 5\u201310s clip.",
              "type": "integer"
            },
            "lyrics": {
              "description": "Alias for lyrics_prompt. Accepted and remapped before the Venice proxy; prefer lyrics_prompt.",
              "type": "string"
            },
            "lyrics_prompt": {
              "description": "Optional lyrics for vocal tracks. Venice field name is lyrics_prompt. Required when the model has lyrics_required=true.",
              "type": "string"
            },
            "model": {
              "description": "Venice music model id. See GET /api/v1/models?type=music (short-clip songs first; 60s-floor ids like ACE-Step only with ?floor=all).",
              "type": "string"
            },
            "prompt": {
              "description": "Music description / style prompt. Required on queue (not on quote).",
              "type": "string"
            }
          },
          "required": [
            "model",
            "prompt"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "model": {
              "type": "string"
            },
            "queue_id": {
              "type": "string"
            },
            "status": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON