# Particle Pro: List Podcasts a Guest Has Appeared On

> Particle Pro: List Podcasts a Guest Has Appeared On is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns the distinct podcasts a guest has appeared on, with per-podcast appearance counts, first/last appearance dates, and brand-safety and bias attributes.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/guests/:id/podcasts
- Price: $0.04/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-list-podcasts-a-guest-has-appeared-on-2bbbc0f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k4rDriyZXsognredewDPH

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-list-podcasts-a-guest-has-appeared-on-2bbbc0f8
```

Example prompt: Which podcasts has Lex Fridman appeared on as a guest? Use his person slug and show me how many times he appeared on each, along with the first and last appearance dates and any brand-safety or bias ratings for those shows.

## When to prefer this

Use this endpoint when you need a comprehensive view of all podcasts a specific person has guested on, especially when appearance frequency, timeline data, and podcast-level brand-safety or bias attributes are important. Prefer this over episode-level endpoints when you want aggregated per-show statistics rather than individual episode details.

## Known failure modes

- Unknown or invalid guest ID returns a 404 not found error
- Malformed pagination cursor returns a 400 bad request error
- Guest with no recorded podcast appearances returns an empty list
- Rate limiting or payment failure returns a 402 or 429 error
- Invalid limit parameter returns a validation error

## How this service works

List podcasts a guest has appeared on. Returns the distinct set of podcasts a guest has appeared on, with per-podcast appearance counts, first/last appearance dates, and the podcast's brand-safety and bias attributes when evaluated.

## Output

A paginated list of distinct podcasts the specified guest has appeared on, each entry including the podcast name/ID, total appearance count on that show, first and last appearance dates, and evaluated brand-safety and political bias attributes for the podcast. Also includes a pagination cursor for retrieving subsequent pages.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-podcasts-a-guest-has-appeared-on-2bbbc0f8/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)
