# Particle Pro Podcast Guest Recommendations

> Particle Pro Podcast Guest Recommendations 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 a ranked list of podcasts a guest has NOT appeared on, ordered by relevance to shows they HAVE appeared on — their pitch list.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/guests/:id/recommendations/podcasts
- 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-podcast-guest-recommendations-1967e0ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TIL1o283Gz1hSusd_bzGr

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-podcast-guest-recommendations-1967e0ad
```

Example prompt: Pull the Particle Pro podcast pitch list for guest slug 'lex-fridman' — show me the top 10 recommended shows he hasn't appeared on yet, and include the 'via' context so I can see which of his existing shows are driving each recommendation.

## When to prefer this

Use this endpoint when you need a ready-made, signal-driven podcast pitch list for a specific guest — particularly when you want recommendations that are demonstrably related to shows the person has already appeared on, not just broad category matches. It is the right choice for PR professionals, speaker bureaus, and booking agents who need to justify outreach with data about why a show is a good fit. Prefer it over generic podcast search when the guest's existing appearance history should drive the ranking.

## Known failure modes

- Unknown or invalid guest ID/slug returns a 404 or empty result set
- Guest with no prior podcast appearances returns an empty recommendations list (no signal to rank from)
- Invalid cursor value causes pagination error
- Rate limiting or payment failure under x402 protocol returns 402 or 429
- Network timeout on large recommendation sets

## How this service works

List podcasts a guest could plausibly appear on next. Returns shows the person has NOT appeared on, ranked by how related they are to the shows the person HAS appeared on — the pitch list.

## Output

A paginated, ranked list of podcast shows the specified guest has not appeared on, ordered by relevance to their existing appearance history. When include=via is passed, each recommendation also carries the guest's own shows that drove the recommendation — actionable context for crafting a pitch.

## 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": "Person identifier — person slug (recommended), knowledge-graph entity slug, or encoded UUID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "include": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Optional response sections. Pass include=via to attach, for each recommendation, the person's own shows that led to it — the venues to cite when pitching."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-podcast-guest-recommendations-1967e0ad/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)
