# Particle Pro Podcast Advertising Intelligence

> Particle Pro Podcast Advertising Intelligence 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 advertising intelligence for a specific podcast, including aggregate stats, read type breakdown, and top sponsors.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/:id/advertising
- 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-podcast-advertising-intelligence-44011c93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kXS3DMjvxdY0hDl5ssLMs

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-intelligence-44011c93
```

Example prompt: Pull up the advertising profile for the 'All In' podcast — I want to see who their top sponsors are, what types of ad reads they use, and overall advertising stats.

## When to prefer this

Use this endpoint when you need structured advertising intelligence for a specific podcast — particularly sponsor identification, ad read type breakdowns, and aggregate ad stats. Prefer this over generic web search when you need structured, machine-readable sponsorship data rather than unstructured articles. Best suited for media buyers, competitive intelligence tools, and podcast analytics workflows.

## Known failure modes

- Unknown or invalid podcast ID/slug returns a 404 not found error
- Podcast exists but has no advertising data indexed returns empty or null fields
- Malformed path parameter causes a 400 bad request
- Payment not provided or insufficient (x402) results in a payment required response
- Rate limiting or quota exceeded returns a 429 error

## How this service works

Get podcast advertising profile. Returns advertising intelligence for a specific podcast, including aggregate stats, read type breakdown, and top sponsors.

## Output

Returns a structured advertising profile for the requested podcast, including aggregate advertising statistics (e.g., number of ads, frequency), a breakdown of ad read types (e.g., host-read, announcer-read, programmatic), and a list of top sponsors with associated metadata.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Podcast slug (e.g., 'all-in'), internal ID, or numeric iTunes ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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