# Particle Pro – Get Podcast Segment

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

Retrieves a single podcast segment by its unique identifier, returning metadata and content details for that specific segment.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/segments/:id
- Price: $0.01/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-segment-549002ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2rDL8FSEAMuZu3SR-r0Y4

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-segment-549002ad
```

Example prompt: Pull up the Particle Pro podcast segment with ID 'seg_abc123' so I can see its details.

## When to prefer this

Use this endpoint when you already have a specific segment ID and need to retrieve full details for that segment. Prefer this over list endpoints when you know exactly which segment you want rather than needing to search or browse segments.

## Known failure modes

- Segment ID not found returns a 404 error
- Invalid or malformed segment ID returns a 400 error
- Expired or revoked API credentials return a 401 error
- Rate limiting may return a 429 error if too many requests are made
- Network timeouts if the API is temporarily unavailable

## How this service works

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

## Output

Returns a single podcast segment object identified by the provided segment ID, including metadata such as segment content, timing, associated podcast, and any linked entities like companies or political topics.

## 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": "Segment ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-get-podcast-segment-549002ad/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)
