2s Audio Transcription API is a paid API for AI agents from 2s.io, paid per call via x402, $0.1305/call, status unknown (last checked 2026-09-15).
Transcribes an audio file from a public URL into text using Deepgram nova-2, with optional speaker diarization and language detection
The (most) everything API: 575+ pay-per-call endpoints for AI agents — ground-truth data, a full AI gateway, and agent infrastructure (storage, queues, watchers). USDC via x402, no signup, no API keys, and upto billing: pay actual usage, not the quote.
A JSON object containing the full transcript text, word-level tokens with start/end timestamps and confidence scores, detected language, total duration in seconds, word count, and optionally labeled speaker utterances. Also includes source attribution indicating Deepgram nova-2 as the underlying provider.
POSThttps://2s.io/api/transcribe/audioChoose this endpoint when you need pay-per-call audio transcription without API key setup or subscriptions, especially in agentic workflows that pay via USDC on Base or Solana. It is ideal for one-off transcription tasks, pipelines with variable volume, or when speaker diarization is needed alongside transcription. Prefer this over self-hosted or subscription Deepgram access when zero-setup and crypto-native payment are priorities.
{
"url": "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3",
"diarize": false,
"language": "en"
}| Field | Type | Description |
|---|---|---|
| url | string | Public URL of the audio file (≤15 MB, ≤15 min). |
| diarize | boolean | Label speakers and return utterance segments. |
| language | string | BCP-47 language hint, e.g. "en", "es". Auto-detected when omitted. |
{
"data": {
"ok": true,
"meta": {
"wordCount": 0
},
"items": [
{
"words": [],
"language": "en",
"confidence": 0,
"transcript": "",
"utterances": [],
"durationSeconds": 372.7
}
],
"total": 1,
"source": {
"url": "https://deepgram.com",
"license": "Generated transcript — Deepgram API terms",
"provider": "Deepgram (nova-2)"
}
},
"meta": {
"cost": {
"usd": 0.0675,
"tier": 2
},
"caller": "x402",
"version": null,
"endpoint": "transcribe.audio",
"settlement": {
"txHash": "0x4f2da4c6b9c2330a9fe214873f3c127dc2b22f6dc8e76ed04ebf31cdbac9473f",
"network": "eip155:8453",
"success": true
}
}
}{
"type": "json",
"schema": {
"type": "object",
"properties": {
"ok": {
"type": "boolean"
},
"meta": {
"type": "object",
"properties": {
"wordCount": {
"type": "integer"
}
}
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"words": {
"type": "array",
"items": {
"type": "object",
"properties": {
"end": {
"type": "number"
},
"word": {
"type": "string"
},
"start": {
"type": "number"
},
"speaker": {},
"confidence": {
"type": "number"
}
}
}
},
"language": {
"type": "string"
},
"confidence": {
"type": "number"
},
"transcript": {
"type": "string"
},
"utterances": {
"type": "array",
"items": {}
},
"durationSeconds": {
"type": "number"
}
}
}
},
"total": {
"type": "integer"
},
"source": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"license": {
"type": "string"
},
"provider": {
"type": "string"
}
}
}
}
},
"example": {
"ok": true,
"meta": {
"wordCount": 52
},
"items": [
{
"words": [
{
"end": 0.24,
"word": "as",
"start": 0.08,
"speaker": null,
"confidence": 0.99
}
],
"language": "en",
"confidence": 0.998,
"transcript": "As much as it’s worth celebrating the first spacewalk with an all-female team…",
"utterances": [],
"durationSeconds": 25.9
}
],
"total": 1,
"source": {
"url": "https://deepgram.com",
"license": "Generated transcript — Deepgram API terms",
"provider": "Deepgram (nova-2)"
}
}
}Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"