# Particle Pro – List Publisher Podcasts

> Particle Pro – List Publisher Podcasts 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 a paginated list of podcasts attributed to a specific publisher, ordered by popularity.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/publishers/: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-publisher-podcasts-715d678f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5wDVWLavCFhx8hymTrAtO

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-715d678f
```

Example prompt: Show me all the podcasts published by Goalhanger — list them by popularity and give me the first 10.

## When to prefer this

Use this endpoint when you need to enumerate all podcasts associated with a specific publisher or podcast network by their slug or ID, especially when popularity-ordered ranking is desired. Prefer this over general podcast search when the publisher identity is already known and you want a complete, paginated catalog view.

## Known failure modes

- Unknown publisher ID or slug returns 404 not found
- Invalid cursor value causes pagination error
- Missing required 'id' path parameter results in a 400 bad request
- Rate limiting or payment failure returns 402 Payment Required
- Publisher with no associated podcasts returns an empty list

## How this service works

List podcasts for a publisher. Returns a paginated list of podcasts attributed to a publisher, ordered by popularity.

## Output

A paginated list of podcast objects attributed to the specified publisher, ordered by popularity. Each podcast entry typically includes identifiers, show name, description, and metadata. A pagination cursor is returned to fetch 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., 'goalhanger', '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-715d678f/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)
