List a publisher's podcasts with their suitability verdicts
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
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated
Provider
api.particle.pro · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x59f3a6dcb6f482c53872dd8f8f9e1f9161a1c5f7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"id": "bvj125PtZl0wGlioOSGOS"
},
"type": "http"
}
},
"routeTemplate": "/v1/podcasts/publishers/:id/suitability/podcasts",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"id": {
"description": "Podcast publisher slug or ID.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"queryParams": {
"properties": {
"category": {
"description": "Filter to podcasts whose latest assessment shows non-NONE exposure in this GARM 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"
},
"cursor": {
"description": "Opaque pagination cursor from previous response",
"type": "string"
},
"limit": {
"description": "Results per page",
"format": "int64",
"type": "integer"
},
"min_prevalence": {
"description": "When combined with category, filter to podcasts whose prevalence in that category is at or above this threshold. Defaults to INCIDENTAL — any non-NONE prevalence. Ignored without category.",
"enum": [
"INCIDENTAL",
"OCCASIONAL",
"FREQUENT",
"PERVASIVE"
],
"type": "string"
},
"sort": {
"description": "Sort order. risk_desc ranks the most-risky first (UNSAFE → SAFE); risk_asc inverts that; recently_evaluated sorts by most-recent assessment first.",
"enum": [
"risk_desc",
"risk_asc",
"recently_evaluated"
],
"type": "string"
},
"tier": {
"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).",
"items": {
"type": "string"
},
"type": "array"
},
"treatment": {
"description": "When combined with category, filter to podcasts whose treatment in that category equals this value. Ignored without category.",
"enum": [
"DOCUMENTARY",
"EDITORIAL",
"PROMOTIONAL",
"GLAMORIZING"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.particle.pro/v1/podcasts/publishers/:id/suitability/podcasts" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.particle.pro/v1/podcasts/publishers/:id/suitability/podcasts");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.particle.pro/v1/podcasts/publishers/:id/suitability/podcasts")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/11850.json, and this resource appears in /discovery/resources and /discovery/search.