mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Speech-to-text transcription on Venice models (Parakeet, Whisper, Wizper, Scribe, xAI STT)

Speech-to-text transcription on Venice models (Parakeet, Whisper, Wizper, Scribe, xAI STT), paid per request in USDC on Base via x402, no API key. Multipart upload. Resolve a model id from GET /api/v1/models?type=asr.

Do you run x402.aispace.bot? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
10
calls / 30d
2
unique payers
2026-09-03
updated

Provider

x402.aispace.bot · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xA7f3Ad0E69F61864092FAbBa6Cee00AF6e584689",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "5hqrYCkTNe5z9Uc8o29KDNd2Gn9YreE6ZthZ7QY5hrKY",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "file": "<multipart audio file>",
          "model": "openai/whisper-large-v3"
        },
        "bodyType": "form-data",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "duration": 2.25,
          "text": " Hello from AI Space."
        },
        "type": "json"
      }
    },
    "related": [
      "/models"
    ],
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "file": {
                  "description": "Audio file (wav/flac/m4a/aac/mp3) uploaded as multipart/form-data.",
                  "format": "binary",
                  "type": "string"
                },
                "model": {
                  "description": "Venice ASR model id. See GET /api/v1/models?type=asr (e.g. openai/whisper-large-v3).",
                  "type": "string"
                }
              },
              "required": [
                "model",
                "file"
              ],
              "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": {
                "duration": {
                  "type": "number"
                },
                "text": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "chainId": 8453,
  "estimateBasis": "asr",
  "priceMult": 0.5,
  "pricingFallback": "min_charge",
  "pricingHint": {
    "basis": "asr",
    "error": "model_required_for_pricing",
    "hint": "unknown or unpriced model - use a catalog id from GET /api/v1/models?type=text|image|video|music|tts|asr|embedding or resolve GET /api/v1/models/traits (e.g. default). Send that exact id; do not invent OpenAI names."
  },
  "tokenDecimals": 6
}

Use it

curl

curl "https://x402.aispace.bot/api/v1/audio/transcriptions"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://x402.aispace.bot/api/v1/audio/transcriptions");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://x402.aispace.bot/api/v1/audio/transcriptions")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/784.json, and this resource appears in /discovery/resources and /discovery/search.