# Particle Pro Podcast Advertising Leaderboard Preview

> Particle Pro Podcast Advertising Leaderboard Preview 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).

Returns the top 10 podcast advertising sponsors of the trailing 7 days ranked by a chosen metric, with rank movement versus the equivalent window 30 days prior.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/advertising/leaderboard/preview
- 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-advertising-leaderboard-preview-80bcf2fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sgL4n6aUjuxCtEGGQz1JB

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-advertising-leaderboard-preview-80bcf2fb
```

Example prompt: Show me the top 10 podcast advertising sponsors from the past 7 days ranked by podcast reach, and tell me how each one's rank has shifted compared to 30 days ago.

## When to prefer this

Use this endpoint when you need a quick, pre-computed snapshot of the top 10 podcast advertisers without pagination or filtering — ideal for dashboards, briefings, or trend monitoring. Prefer it over full list endpoints when you only need the leaderboard preview with rank movement context.

## Known failure modes

- Invalid metric enum value returns a 400 error
- No data available for the trailing window returns an empty or partial list
- Rate limiting or payment failure returns a 402 or 429 error
- Service unavailability returns a 503 error

## How this service works

Get advertising leaderboard preview. Returns the top 10 advertising sponsors of the trailing 7 days ranked by the chosen metric, each with its rank movement versus the equivalent 7-day window ending 30 days ago.

## Output

A ranked list of the top 10 podcast advertising sponsors over the trailing 7 days, ordered by the selected metric (ad_count, podcast_reach, or episode_reach), each entry including the sponsor's current rank and its rank movement versus the equivalent 7-day window ending 30 days ago.

## 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": {
      "metric": {
       "enum": [
        "ad_count",
        "podcast_reach",
        "episode_reach"
       ],
       "type": "string",
       "description": "Metric to rank sponsors by"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-podcast-advertising-leaderboard-preview-80bcf2fb/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)
