# Particle Pro – Get Clip Transcript

> Particle Pro – Get Clip Transcript is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns the diarized (speaker-separated) transcript for a specific podcast clip in dialogue, plain text, or SRT format.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/clips/:id/transcript
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/particle-pro-get-clip-transcript-9e1c14a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M0TbZVA3LhSMOhZvjmstz

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 particle-pro-get-clip-transcript-9e1c14a2
```

Example prompt: Can you get me the diarized transcript for clip ID 'clp_abc123' from Particle Pro, formatted as a dialogue so I can see which speaker said what?

## When to prefer this

Choose this endpoint when you need the full spoken content of a specific podcast clip with speaker attribution. It is the right choice when you already have a clip ID (e.g., from a prior list or search call) and need either human-readable dialogue, raw text, or subtitle-ready SRT output. Prefer this over a general podcast transcript endpoint when working at the clip (segment) level rather than a full episode level.

## Known failure modes

- Invalid or non-existent clip ID returns a 404 not found error
- Unsupported format enum value returns a 400 validation error
- Clip transcript not yet available (processing) may return a 202 or empty result
- Payment failure (x402 protocol) results in a 402 Payment Required response
- Network timeout if clip is large or service is under load

## How this service works

Get clip transcript. Returns the diarized transcript for a specific clip.

## Output

Returns a structured transcript for the specified clip, with speaker diarization (who said what). Output format can be 'dialogue' (turn-by-turn with speaker labels), 'text' (plain continuous transcript), or 'srt' (subtitle file format with timestamps). The response includes the full spoken content segmented by speaker turns or time codes depending on format.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Clip ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "format": {
       "enum": [
        "dialogue",
        "text",
        "srt"
       ],
       "type": "string",
       "description": "Output format"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-get-clip-transcript-9e1c14a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.particle.pro](https://www.zero.xyz/host/api.particle.pro/llms.txt)
