# Particle Pro – Get Podcast by Slug or ID

> Particle Pro – Get Podcast by Slug or ID 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 detailed metadata for a single podcast by its slug (e.g., 'all-in'), internal ID, or iTunes numeric ID, with optional related shows, guest recommendations, and sponsor data.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/: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-by-slug-or-id-1a739e13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jrNSluT4sOh1QXyV_h1oE

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-by-slug-or-id-1a739e13
```

Example prompt: Pull up the full Particle Pro profile for the 'All-In' podcast, and include its five most related shows and any recommended guests they could book next.

## When to prefer this

Use this endpoint when you need comprehensive metadata for a single known podcast (by slug, internal ID, or iTunes ID) and optionally want related shows, guest suggestions, or sponsor intelligence in one call. Prefer it over list-based endpoints when you already know the podcast identifier and need depth rather than breadth. It is the right choice for podcast research, competitive ad intelligence, and guest booking workflows.

## Known failure modes

- Invalid or unknown slug/ID returns a 404 not found error
- Requesting recommended_sponsors without a premium plan returns a 403 or plan-gate error
- Malformed path parameter (e.g. empty string) returns a 400 bad request
- Payment not provided or insufficient for the $0.01 USDC x402 fee results in a 402 Payment Required response
- topic_limit exceeding 1000 returns a validation error

## How this service works

Get a podcast. Returns a single podcast by slug (e.g., 'all-in') or ID.

## Output

A structured JSON object containing the podcast's full profile — including its slug, name, description, topics (up to the requested limit), and optionally: the five most related podcasts (lean form), recommended next guests, and premium-grade recommended sponsors (active advertisers on similar shows not yet buying this one).

## 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": "Podcast slug (e.g., 'all-in', 'lex-fridman-podcast'), internal ID, or numeric iTunes ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "include": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Optional response sections. related attaches the five most related podcasts (lean form); recommended_guests the five guests the show could book next; recommended_sponsors (premium-grade, requires a plan with premium endpoints) the five advertisers active on shows like this one that do not buy it yet. Each has a paged endpoint for the full list: /related, /recommendations/guests, /recommendations/sponsors."
      },
      "topic_limit": {
       "type": "integer",
       "format": "int64",
       "description": "Maximum number of aggregated topics to return (0 for none, max 1000)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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