Turn a full recording into a structured document
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, flac. Flat price, USDC on Base, no account.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
943 msmedian answer time
$0.59listed price per call
$0.59price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://dicta-notes.com/routes/x402/transcribe-long
| Category | Image and media |
|---|---|
| Provider host | dicta-notes.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.59 | 943 ms |
Example input (from the provider)
{
"body": {
"audio_url": "https://example.com/meeting.mp3",
"store": false
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"audio_url": {
"description": "Public http(s) URL of the audio file (up to 2 hours, 400 MB max).",
"format": "uri",
"type": "string"
},
"store": {
"description": "Optional. When true, encrypt and store the transcript JSON for 60 days.",
"type": "boolean"
}
},
"required": [
"audio_url"
],
"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_seconds": {
"type": "number"
},
"language": {
"type": "string"
},
"languages_detected": {
"items": {
"type": "string"
},
"type": "array"
},
"segments": {
"items": {
"properties": {
"confidence": {
"type": [
"number",
"null"
]
},
"end_time": {
"type": "number"
},
"language": {
"type": "string"
},
"speaker": {
"type": "string"
},
"start_time": {
"type": "number"
},
"text": {
"type": "string"
}
},
"required": [
"speaker",
"text",
"start_time",
"end_time",
"language"
],
"type": "object"
},
"type": "array"
},
"speakers": {
"items": {
"type": "string"
},
"type": "array"
},
"transcript": {
"type": "string"
}
},
"required": [
"transcript",
"segments",
"speakers",
"duration_seconds",
"language",
"languages_detected"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}