# transcribe.soboljem.cz

> transcribe.soboljem.cz is a paid API for AI agents from transcribe.soboljem.cz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Transcribes an audio or video URL and returns the transcript, WebVTT subtitles, and an editor's cut list marking dead-air segments with estimated time savings.

## Facts

- Endpoint: POST https://transcribe.soboljem.cz/transcribe
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transcribe-soboljem-cz-315bd915
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y9EjAyZIcbkpVOnRZGn5c

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability transcribe-soboljem-cz-315bd915 -d '<json body>'
```

Example prompt: Can you transcribe the audio at https://example.com/interview.mp3 and give me the full transcript, WebVTT subtitles, and a cut list showing where the dead air is?

## When to prefer this

Choose this endpoint when you need a combined transcript, WebVTT subtitles, and an editing-focused dead-air cut list from a single audio or video URL in one flat-rate call. It is especially useful for podcast producers, video editors, and meeting-note workflows where identifying silences for trimming is as important as getting the spoken text.

## Known failure modes

- File exceeds 3 MB limit — request rejected
- URL is unreachable or returns an error — transcription fails
- Audio/video file contains no clear speech — still billed, transcript is empty or minimal
- Unsupported file format — transcription may fail
- Network timeout fetching the remote URL — processing error

## How this service works

Transcribe an audio or video URL. Returns the transcript, ready-made WebVTT subtitles, and an editor's cut list marking every stretch of dead air and how much shorter the result would be. One flat price, $0.0200 per request, whatever the file. Sources up to 800 KB. A file that turns out to hold no clear speech is still billed — the transcription ran.

## Output

Returns a full text transcript of the spoken content, a ready-to-use WebVTT subtitle file, and an editor's cut list that marks every stretch of dead air along with an estimate of how much shorter the final recording would be after those cuts. Files with no clear speech are still processed and billed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transcribe-soboljem-cz-315bd915/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from transcribe.soboljem.cz](https://www.zero.xyz/host/transcribe.soboljem.cz/llms.txt)
