# Particle Pro – Get Podcast Clip by ID

> Particle Pro – Get Podcast Clip by ID 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-14).

Fetches a single podcast clip record from Particle Pro by its unique clip identifier.

## Facts

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

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-podcast-clip-by-id-256942bf
```

Example prompt: Can you pull up the Particle Pro clip with ID 'clp_abc123' and tell me its details?

## When to prefer this

Use this endpoint when you have a specific Particle Pro clip ID and need to retrieve its full details in a single, direct lookup. Prefer this over list or search endpoints when you already know the exact clip ID and want minimal latency. It is the canonical way to hydrate a clip record when only the ID is known.

## Known failure modes

- Invalid or malformed clip ID returns a 404 not found error
- Missing required path parameter 'id' causes request failure
- Expired or deleted clip ID returns not found
- Rate limits or payment failure (x402) result in 402 or 429 responses
- Network timeouts if the Particle Pro API is temporarily unavailable

## How this service works

Get a clip. Returns a single clip by its unique identifier.

## Output

Returns a single podcast clip object identified by the provided clip ID, including clip metadata such as title, associated podcast/show, audio references, duration, and any other clip-level fields stored by Particle Pro.

## 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": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-get-podcast-clip-by-id-256942bf/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)
