← Marketplace
Base
Dicta-notes
Dicta-notes is an x402-native service at https://dicta-notes.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 5 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Stt Session 15 Live streaming speech-to-text for voice agents: buy a prepaid session, stream mic or call audio over WebSocket, get partial transcripts as the speaker talks. No account, no API key, no per-minute minimum — flat USDC on Base. Multilingual with mid-sentence code-switching. This SKU: 15 minutes connected time at $0.18 flat. | /m/bz-dicta-notes-com/routes/x402/stt-session/15 | 0.18 USDC |
Stt Session 30 Live streaming speech-to-text for voice agents: buy a prepaid session, stream mic or call audio over WebSocket, get partial transcripts as the speaker talks. No account, no API key, no per-minute minimum — flat USDC on Base. Multilingual with mid-sentence code-switching. This SKU: 30 minutes connected time at $0.36 flat. | /m/bz-dicta-notes-com/routes/x402/stt-session/30 | 0.36 USDC |
Stt Session 5 Live streaming speech-to-text for voice agents: buy a prepaid session, stream mic or call audio over WebSocket, get partial transcripts as the speaker talks. No account, no API key, no per-minute minimum — flat USDC on Base. Multilingual with mid-sentence code-switching. This SKU: 5 minutes connected time at $0.06 flat. | /m/bz-dicta-notes-com/routes/x402/stt-session/5 | 0.06 USDC |
X402 Transcribe Transcribe short audio fast: POST JSON with an audio_url (voicemail, call recording, voice memo, podcast clip — up to 15 min) and get Gemini-powered transcript JSON back with speaker-labeled, timestamped segments — any spoken language, auto-detected and labeled per segment. Handles mp3, wav, m4a, ogg, webm, flac. $0.10 flat in USDC on Base — no account, no API key. For hour-long meetings use /rout | /m/bz-dicta-notes-com/routes/x402/transcribe | 0.1 USDC |
X402 Transcribe Long Turn a full recording into a structured document: POST JSON with an audio_url — up to 2 HOURS of meeting, interview, hearing, or podcast audio — and get a diarized who-said-what transcript JSON: timestamps, speaker tracking with per-segment confidence, language codes. Most transcription APIs cap at ~20 minutes; this one runs Gemini long-context, built for the long ones. mp3, wav, m4a, ogg, webm, f | /m/bz-dicta-notes-com/routes/x402/transcribe-long | 0.59 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-dicta-notes-com/routes/x402/stt-session/15')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-dicta-notes-com/routes/x402/stt-session/15 # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …