-
Notifications
You must be signed in to change notification settings - Fork 4
STT
Acceptable use. Hosted-instance traffic is governed by the Terms of Service — including a generative-content acceptable-use policy — and by the upstream model providers' usage policies. Wallets used for prohibited content are blocked before settlement. Outputs are generated by third-party models from your inputs; you are responsible for how you use them.
Two tiers of audio transcription, paywalled via x402. Provide a URL to an audio file, get back the transcript with language detection and duration. The operator's OPENAI_API_KEY handles upstream auth.
| Endpoint | Price | Model | Max duration |
|---|---|---|---|
POST /api/transcribe |
$0.03 | gpt-4o-mini-transcribe |
5 min |
POST /api/transcribe-pro |
$0.10 | gpt-4o-transcribe |
10 min |
Both tiers are wallet-only — every call burns real upstream transcription credit. See Security Model.
mp3, mp4, mpeg, mpga, m4a, wav, ogg, flac, webm (max 25 MB)
// Request
{ "url": "https://example.com/audio.mp3", "language": "en" }
// Response
{ "model": "gpt-4o-mini-transcribe", "provider": "openai",
"text": "Hello, this is a sample transcription.",
"language": "en", "duration": 3.5 }Only url is required. language (ISO-639-1 code) is optional but improves accuracy.
- Text-to-Speech — the reverse: text to audio
- LLM Proxy Gateway — text inference
- Paying with x402 — the USDC payment flow
agent402.tools · synced from wiki/ in the main repo — edit there, not here.
Using it (for agents / buyers)
- Getting Started
- Paying with x402
- Robinhood Chain (USDG)
- Paying with Compute
- MCP Connector
- Adapters
- AWS Bedrock AgentCore
- Tool Catalog
- Skill Packs
- x402 Index and Router
- x402 Leaderboard
- LLM Gateway (OpenAI /v1)
- LLM Proxy Gateway
- Image Generation Gateway
- Code Execution Sandbox
- Text-to-Speech
- Speech-to-Text
- Text Embeddings
- Payments and x402
- Memory and Coordination
Tollbooth (for site owners)
- Pay-per-crawl — what it is, install, modes
- Pay-per-crawl Walkthrough — 5-min hands-on
- Tollbooth for Agencies — many-site playbook
- Try Tollbooth Cloud (managed)
Website & Developer
- Quickstart — first call in 60 seconds
- Playground — try tools in your browser
- SDK REPL — live code editor
- API Explorer — browse OpenAPI
- Adapter Docs — per-framework guides
- Workflows — chaining patterns
- Blog · Changelog
Under the hood