# Particle Pro Podcast Rankings Movers

> Particle Pro Podcast Rankings Movers 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 podcast chart entries whose rank changed between the current snapshot and a comparison snapshot N days ago, filterable by platform, country, category, and change type.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/rankings/movers
- 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-podcast-rankings-movers-f87b003d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZYpmuVaxyPh9XMB_y5uND

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-rankings-movers-f87b003d
```

Example prompt: Show me the top 10 podcasts that moved up on the Apple charts in the US compared to 7 days ago — include new debuts and rank climbers.

## When to prefer this

Use this endpoint when you need to track podcast chart momentum — specifically which shows are rising, falling, debuting, or exiting rankings on Apple or Spotify across different countries and categories. Prefer this over a static rankings list when change detection and trend analysis are the goal rather than a snapshot of current positions.

## Known failure modes

- Invalid country code returns an error or empty results
- Unsupported chart_type value returns a validation error
- window_days with no available snapshot returns empty or approximate comparison
- Invalid source/platform enum value causes a 400 error
- No movers found for the given filters returns an empty list
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

List ranking movers. Returns the chart entries whose rank changed between the live snapshot and the comparison snapshot window_days ago.

## Output

A list of podcast chart entries that experienced rank changes, including each podcast's identifier, previous and current rank positions, change type (up/down/new/exit), and associated metadata such as title and category. Results are scoped to the requested platform, country, chart type, and comparison window.

## 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": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Maximum number of movers to return."
      },
      "change": {
       "enum": [
        "all",
        "up",
        "down",
        "new",
        "exit"
       ],
       "type": "string",
       "description": "Filter by change type. 'up' / 'down' for podcasts whose rank moved, 'new' for chart debuts, 'exit' for podcasts that fell off, 'all' returns every change type."
      },
      "source": {
       "enum": [
        "apple",
        "spotify"
       ],
       "type": "string",
       "description": "Ranking source platform."
      },
      "country": {
       "type": "string",
       "description": "ISO 3166-1 alpha-2 country code; case-insensitive on input."
      },
      "chart_type": {
       "enum": [
        "top_podcasts"
       ],
       "type": "string",
       "description": "Chart variant within the source."
      },
      "window_days": {
       "type": "integer",
       "format": "int64",
       "description": "Comparison window in days. The comparison snapshot is the most recent retired snapshot closest to (now - window_days). Default is 1 (vs. yesterday)."
      },
      "category_slug": {
       "type": "string",
       "description": "Category slug. Omit for the overall chart."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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