# transcribe.soboljem.cz /cutlist

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

Analyzes an existing transcript (WebVTT, SRT, or raw segment timings) to identify dead air, suggest cuts, and estimate the resulting shorter duration — without re-transcribing audio.

## Facts

- Endpoint: POST https://transcribe.soboljem.cz/cutlist
- Price: $0.002/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-cutlist-440bf59e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JBz68T8qBzRGE-zSrBElc

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-cutlist-440bf59e -d '<json body>'
```

Example prompt: I have a WebVTT subtitle file from my podcast interview — can you analyze it for dead air, give me a list of the silence spans worth cutting, and tell me how much shorter the final result would be?

## When to prefer this

Use this endpoint when you already have a transcript, subtitle file, or segment timings and want to identify dead air without paying for re-transcription. It is cheaper and faster than re-running full transcription since it skips audio upload and speech-to-text — ideal for post-processing workflows, re-editing previously transcribed content, or when the audio is unavailable but timing data exists.

## Known failure modes

- Malformed or unrecognized subtitle format returns a parsing error
- Empty or zero-duration transcript returns no cuts found
- Transcript with no significant silences returns an empty cut list
- Payment not received results in HTTP 402 and no processing
- Extremely long transcripts may time out or return partial results

## How this service works

Find the dead air in a transcript you already have. Send WebVTT or SRT subtitles, or raw segment timings, and get back every stretch of silence worth cutting, the spans worth keeping, and how much shorter the result would be. No audio, no upload and no transcription — $0.0020 flat, whatever the length. Same cut list the transcription endpoint returns, sold without paying for the transcription again.

## Output

Returns a structured cut list identifying every stretch of silence or dead air in the provided transcript, the spans recommended for keeping, and a calculated estimate of how much shorter the content would be after applying the cuts.

## 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-cutlist-440bf59e/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)
