# Particle Pro – List Podcast Publishers

> Particle Pro – List Podcast Publishers 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 podcast publishers, sortable by catalog size or alphabetically, with optional name search filtering.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/publishers
- 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-podcast-publishers-208af885
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fwHbAs9lSX_1UMu2DqOjr

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-podcast-publishers-208af885
```

Example prompt: Show me the top 10 podcast publishers on Particle Pro sorted by catalog size — I want to see which networks have the biggest podcast libraries.

## When to prefer this

Use this endpoint when you need to discover or enumerate podcast publishers/networks rather than individual podcasts or episodes. It is the right choice for directory-style browsing, finding which publisher owns a given network name, or ranking publishers by catalog breadth. Prefer over episode- or show-level endpoints when the user's goal is publisher-level discovery.

## Known failure modes

- Invalid sort parameter value returns a 400 error
- Invalid or expired pagination cursor returns an error or empty result
- Very broad or empty query with high limit may return large payloads or timeout
- No publishers matching the search query returns an empty list

## How this service works

List podcast publishers. Returns a paginated list of podcast publishers, ordered by catalog size (largest first, the default) or alphabetically by name.

## Output

A paginated JSON list of podcast publisher records ordered by catalog size or name, each containing publisher identity fields (name, slug) and podcast count. 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Case-insensitive substring match against the publisher's name or slug. An exact name match sorts first."
      },
      "sort": {
       "enum": [
        "podcast_count",
        "name"
       ],
       "type": "string",
       "description": "Sort order. podcast_count ranks publishers by catalog size (largest first); name sorts alphabetically."
      },
      "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-podcast-publishers-208af885/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)
