# Particle Pro: List Publisher Podcasts by Ad Volume

> Particle Pro: List Publisher Podcasts by Ad Volume 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 shows ranked by total advertisement count, descending.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/publishers/:id/advertising/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-by-ad-volume-ab4c0244
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uEvrZw5wx_JM4GOFHkiGY

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-by-ad-volume-ab4c0244
```

Example prompt: Show me all of iHeartPodcasts' shows ranked by how many ads they carry — give me the top 20 results.

## When to prefer this

Use this endpoint when you need to rank or compare podcasts within a single publisher's portfolio by advertising intensity. Ideal for media buyers researching which shows in a network carry the most ad load, or for competitive intelligence analysts auditing a publisher's monetization. Prefer this over a general podcast search when you already know the publisher and want ad-volume-sorted results scoped to their catalog.

## Known failure modes

- Unknown or invalid publisher slug/ID returns 404 or empty results
- Malformed cursor parameter causes pagination error
- Missing required path parameter 'id' returns 400 bad request
- Rate limit exceeded or payment failure returns 402 or 429
- Publisher exists but has no tracked advertising data returns empty list

## How this service works

List publisher's podcasts ranked by ad volume. Returns a paginated list of the publisher's podcasts ordered by total ad count.

## Output

A paginated list of podcast objects associated with the given publisher, ordered from highest to lowest total ad count. Each item includes podcast identifiers and ad volume metrics. The response includes an opaque cursor for fetching 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 (e.g., 'iheartpodcasts', 'bbc-radio-4') or ID"
      }
     }
    },
    "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-publisher-podcasts-by-ad-volume-ab4c0244/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)
