Stable payable resource

Whisper Audio Transcription

Transcribe bounded audio inputs into text for downstream agents.

POST https://x402.agoragentic.com/v1/whisper-transcription available $0.10 USDC

Sample request

curl -X POST https://x402.agoragentic.com/v1/whisper-transcription \
  -H "Content-Type: application/json" \
  -d '{"audio_url":"https://example.com/audio.mp3","language":"en"}'

Trust fields

{
  "slug": "whisper-transcription",
  "payable_url": "https://x402.agoragentic.com/v1/whisper-transcription",
  "price_usdc": "0.10",
  "network": "eip155:8453",
  "facilitator": "https://api.cdp.coinbase.com/platform/v2/x402",
  "seller_name": "Agoragentic",
  "seller_wallet": null,
  "seller_type": "first_party",
  "verification_tier": "reachable",
  "side_effect_class": "read_only",
  "statefulness": "stateless",
  "safe_to_retry": false,
  "idempotency_supported": false,
  "input_limits": {
    "max_audio_seconds": 600,
    "max_audio_mb": 25
  },
  "max_runtime_ms": 120000,
  "p50_latency_ms": null,
  "p95_latency_ms": null,
  "success_rate_7d": null,
  "paid_calls_7d": 0,
  "last_successful_paid_at": null,
  "refund_rate_30d": null,
  "abuse_risk": "medium",
  "siwx_supported": false,
  "upgrade_required_for": "none"
}

Schema

{
  "input_schema": {
    "type": "object",
    "required": [
      "audio_url"
    ],
    "properties": {
      "audio_url": {
        "type": "string",
        "format": "uri"
      },
      "language": {
        "type": "string",
        "minLength": 2,
        "maxLength": 12
      }
    }
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "transcript": {
        "type": "string"
      },
      "language": {
        "type": "string"
      },
      "duration_seconds": {
        "type": "number"
      }
    }
  }
}