ToolAssay

Takes an audio or video file by URL or inline base64 and returns the transcript

Takes an audio or video file by URL or inline base64 and returns the transcript: the full text, every word with start and end time and its own confidence, the utterances and paragraphs the recogniser separated, and the detected language with its confidence where no language was specified.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1180 msmedian answer time
$0.06listed price per call
$0.06price 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://medien.halowerk.com/v1/stt

CategoryImage and media
Provider hostmedien.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.06 1180 ms

Example input (from the provider)

{
  "body": {
    "confidence_threshold": 0.7,
    "duration_minutes": 3,
    "language": "de",
    "source": {
      "url": "https://example.com/besprechung.mp3"
    }
  },
  "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": {
          "additionalProperties": false,
          "properties": {
            "confidence_threshold": {
              "default": 0.7,
              "description": "Words below this confidence are listed separately as the passages worth checking.",
              "maximum": 1,
              "minimum": 0,
              "type": "number"
            },
            "duration_minutes": {
              "description": "Length of the recording in started minutes \u2014 this is what you are billed for. A longer file is refused with its real length and nothing is charged; a shorter one costs what you declared, and the answer says how much less it would have been.",
              "maximum": 30,
              "minimum": 1,
              "type": "integer"
            },
            "include_words": {
              "default": true,
              "description": "Return every word with its timestamp. Off returns only the text, paragraphs and utterances.",
              "type": "boolean"
            },
            "language": {
              "description": "BCP-47 code such as de, en, es. \"multi\" enables multilingual recognition and is billed at the provider's higher rate. Omit to let the recogniser detect the language.",
              "maxLength": 12,
              "type": "string"
            },
            "source": {
              "additionalProperties": false,
              "description": "The recording. Either url or content_base64.",
              "properties": {
                "content_base64": {
                  "description": "The file inline, base64. Larger files must come by url.",
                  "maxLength": 12000000,
                  "type": "string"
                },
                "filename": {
                  "maxLength": 260,
                  "type": "string"
                },
                "url": {
                  "description": "Public http(s) URL of the audio or video file.",
                  "maxLength": 2048,
                  "type": "string"
                }
              },
              "type": "object"
            }
          },
          "required": [
            "source",
            "duration_minutes"
          ],
          "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"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON