# Particle Pro - List Company Podcast Advertising Placements

> Particle Pro - List Company Podcast Advertising Placements 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 a newest-first, paginated feed of podcast ad placements attributed to a specific company, with episode, podcast, and sponsor context.

## Facts

- Endpoint: GET https://api.particle.pro/v1/companies/:id/podcast/advertising/placements
- 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-list-company-podcast-advertising-placements-643e974e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7wOzP1kRXwxv_CPC1KB4D

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-list-company-podcast-advertising-placements-643e974e
```

Example prompt: Pull the 20 most recent podcast ad placements for Squarespace from Particle Pro, filtering for episodes published since January 1 2024, and show me the episode title, podcast name, and any co-sponsors.

## When to prefer this

Use this endpoint when you need structured, attributed podcast advertising data for a specific company — including episode context, co-sponsor relationships, and time-bound filtering. It is ideal for competitive intelligence, brand tracking, and sponsorship research workflows. Prefer this over generic web search or podcast directory APIs when you need machine-readable, paginated advertising placement data with sponsor attribution.

## Known failure modes

- Unknown company slug or domain returns a 404 or empty result set
- Invalid cursor value causes a pagination error
- Date range filters with malformed ISO 8601 strings return a 400 validation error
- Requesting a nonexistent podcast_id returns an empty placement list
- Rate limiting or payment failure (x402) blocks the request
- Very new or obscure companies may return zero placements

## How this service works

List company podcast advertising placements. Returns a newest-first, keyset-paginated feed of physical podcast ad placements with a known episode publication time, attributed to a company, with episode and podcast context plus every company

## Output

A newest-first, keyset-paginated list of podcast ad placement records for the specified company, each including episode publication time, episode and podcast metadata (title, ID, etc.), the attributed company, and all co-sponsors present in that placement. Includes a pagination cursor for retrieving subsequent pages.

## 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": "Company slug (e.g. 'apple'), domain (e.g. 'apple.com'), or ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "since": {
       "type": "string",
       "description": "Only include ads from episodes published on or after this ISO 8601 date or date-time"
      },
      "until": {
       "type": "string",
       "description": "Only include ads before this ISO 8601 date-time. A bare date includes that whole UTC day."
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "podcast_id": {
       "type": "string",
       "description": "Optional podcast ID, slug, or Apple/iTunes collection ID"
      },
      "sponsor_id": {
       "type": "string",
       "description": "Optional sponsor ID. Selects placements attributed to this sponsor while preserving co-sponsors in the response."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-company-podcast-advertising-placements-643e974e/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)
