# Particle Pro – List Publisher Podcasts with Suitability Verdicts

> Particle Pro – List Publisher Podcasts with Suitability Verdicts 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).

Returns a paginated list of a podcast publisher's analyzed podcasts decorated with IAB/GARM tier, confidence score, evaluation timestamp, and flagged category exposures.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/publishers/:id/suitability/podcasts
- 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-list-publisher-podcasts-with-suitability-verdicts-61fc396f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mrU6Nrzvhm1FgpSbpPCZu

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-publisher-podcasts-with-suitability-verdicts-61fc396f
```

Example prompt: Pull up the brand safety verdicts for all podcasts from publisher 'wondery', sorted by highest risk first, and flag any that are UNSAFE or have non-NONE exposure in the hate_speech_aggression category.

## When to prefer this

Use this endpoint when you need to audit or filter a specific publisher's entire podcast catalog for brand safety — especially when you require IAB/GARM-tier labels, GARM category-level exposure details, treatment type, and prevalence thresholds. Prefer this over a general podcast search when the publisher is already known and you want a structured safety verdict per show rather than keyword-based discovery.

## Known failure modes

- Invalid or unknown publisher ID returns 404 not found
- Invalid tier or category enum value returns 400 bad request
- Expired or invalid pagination cursor returns 400 or empty result
- No podcasts yet analyzed for the publisher returns empty list
- treatment or min_prevalence filters ignored if category is not also specified
- Rate limiting or payment failure returns 402 payment required

## How this service works

List a publisher's podcasts with their suitability verdicts. Returns a paginated list of the publisher's analyzed podcasts decorated with their latest IAB/GARM tier, confidence, evaluated-at timestamp, and any non-NONE category exposures (flagged

## Output

A paginated list of podcast records, each including the podcast name and ID, its latest IAB/GARM suitability tier (e.g. SAFE, SENSITIVE, UNSAFE), a confidence score, the timestamp of the most recent evaluation, and any GARM category exposures with treatment type and prevalence level. A pagination cursor is included 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": "Podcast publisher slug or ID."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "sort": {
       "enum": [
        "risk_desc",
        "risk_asc",
        "recently_evaluated"
       ],
       "type": "string",
       "description": "Sort order. risk_desc ranks the most-risky first (UNSAFE → SAFE); risk_asc inverts that; recently_evaluated sorts by most-recent assessment first."
      },
      "tier": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Filter to podcasts whose latest verdict is in this tier set. To OR-filter multiple tiers, pass a comma-separated list (e.g. ?tier=UNSAFE,SENSITIVE)."
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "category": {
       "enum": [
        "adult_sexual",
        "arms_ammunition",
        "crime_harmful_acts",
        "death_injury_military_conflict",
        "online_piracy",
        "hate_speech_aggression",
        "obscenity_profanity",
        "illegal_drugs_alcohol_tobacco",
        "spam_harmful",
        "terrorism",
        "debated_social_issues",
        "misinformation"
       ],
       "type": "string",
       "description": "Filter to podcasts whose latest assessment shows non-NONE exposure in this GARM category."
      },
      "treatment": {
       "enum": [
        "DOCUMENTARY",
        "EDITORIAL",
        "PROMOTIONAL",
        "GLAMORIZING"
       ],
       "type": "string",
       "description": "When combined with category, filter to podcasts whose treatment in that category equals this value. Ignored without category."
      },
      "min_prevalence": {
       "enum": [
        "INCIDENTAL",
        "OCCASIONAL",
        "FREQUENT",
        "PERVASIVE"
       ],
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-publisher-podcasts-with-suitability-verdicts-61fc396f/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)
