# Particle Pro Podcast Search & List

> Particle Pro Podcast Search & List is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

List and search podcasts with filters for topic, language, ad presence, popularity, suitability, and format, returning paginated results with match quality signals.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts
- Price: $0.01/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-podcast-search-list-13eab1c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VihWNAu33M6sexvDaN1ei

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-podcast-search-list-13eab1c2
```

Example prompt: Can you find me the top 10 most popular English-language technology podcasts that don't have ads? Sort them by popularity.

## When to prefer this

Use this endpoint when you need to discover, search, or enumerate podcasts from the Particle Pro catalog — especially when fuzzy name matching, topic filtering, language filtering, or ad-presence filtering is required. Prefer this over generic podcast directories when you need rich metadata like popularity percentiles, match quality signals, and suitability tiers. Use the q parameter for forgiving name-based search and topic_id for category browsing.

## Known failure modes

- Invalid or unknown cursor returns an error or empty results
- Filtering by slug with a non-existent slug returns an empty list
- Sparse episode coverage causes ad-free filter to exclude some legitimate shows
- Very broad queries with no q or topic_id default to popularity ordering which may not be what user expected
- Language code typos or unsupported values may return no results or an error

## How this service works

List and search podcasts. Returns a paginated list of podcasts, with filters for topic, language, suitability tier, popularity, and format.

## Output

A paginated list of podcast objects, each including the podcast name, stable slug, popularity percentile, language, topic tags, suitability tier, ad presence flag, format, match quality (name vs description match), and a cursor for fetching the next page.

## 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": "Search the catalog by podcast name. GET /v1/podcasts/search is the canonical search endpoint and accepts the same parameters. The search is forgiving: it handles typos, missing or extra words ('offline jon favreau' finds Offline with Jon Favreau), a name plus qualifiers ('equity techcrunch'), and pasted episode titles ('Ferrari | Acquired' finds Acquired). The best matches come first, and each result's match_quality tells you how confident the match is — including when a show matched only through its description (match_quality=description) rather than its name."
      },
      "slug": {
       "type": "string",
       "description": "Filter by exact podcast slug (e.g., 'all-in'). Slugs are stable, human-readable identifiers returned on every podcast object."
      },
      "sort": {
       "enum": [
        "relevance",
        "popularity"
       ],
       "type": "string",
       "description": "Result ordering. relevance — the default whenever q is present — ranks by how well each podcast matches the query, breaking ties by popularity. popularity orders purely by the global popularity percentile (most popular first; podcasts not currently charting sort last), and also overrides topic_id's concentration ordering. Without q or topic_id, results are popularity-ordered either way."
      },
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "has_ads": {
       "enum": [
        "true",
        "false"
       ],
       "type": "string",
       "description": "Filter by advertiser presence. Pass false to find ad-free shows — an assertion that requires the show to have enough analyzed episodes, so sparsely-analyzed podcasts are excluded rather than presumed ad-free."
      },
      "language": {
       "type": "string",
       "description": "Filter by the podcast's language (
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-podcast-search-list-13eab1c2/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)
