# Particle Pro: Get Podcast Chart Slot History

> Particle Pro: Get Podcast Chart Slot History 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 paginated historical chart snapshots for a podcast chart slot, ordered most-recent first, filterable by source platform, country, chart type, category, and podcast.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/rankings/history
- 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-get-podcast-chart-slot-history-88d429b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iIfkRWjAFGw7PKWF9ebUU

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-get-podcast-chart-slot-history-88d429b2
```

Example prompt: Pull the Apple top_podcasts chart history for the US, limited to 20 results per page, from January 1 2025 to March 31 2025 — I want to see how rankings changed over that period.

## When to prefer this

Use this endpoint when you need historical chart ranking data for podcasts on Apple or Spotify, especially when you need to analyze trends over time, track a specific podcast's chart trajectory, or compare rankings across date ranges. Prefer this over live/current chart endpoints when retrospective analysis is the goal.

## Known failure modes

- Invalid country code returns an error or empty results
- Unsupported chart_type value rejected (only 'top_podcasts' allowed)
- Invalid source platform (only 'apple' or 'spotify' accepted)
- Malformed ISO 8601 date strings for since/until return validation errors
- Invalid pagination cursor returns an error
- No data available for specified filters returns empty result set
- Payment failure (x402) blocks access to the endpoint

## How this service works

Get chart slot history. Returns historical chart snapshots for a chart slot, ordered most-recent first.

## Output

A paginated list of historical chart snapshots ordered most-recent first, each containing chart position data, the captured_at timestamp, platform source, country, chart type, and category. A next-page cursor is included when more results are available.

## 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": "Results per page"
      },
      "since": {
       "type": "string",
       "description": "Lower bound on captured_at (ISO 8601). Omit for no lower bound."
      },
      "until": {
       "type": "string",
       "description": "Upper bound on captured_at (ISO 8601). Omit for no upper bound."
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "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."
      },
      "podcast_id": {
       "type": "string",
       "description": "Restrict to one podcast across the chart slot's history."
      },
      "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-get-podcast-chart-slot-history-88d429b2/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)
