# Particle Pro Company Podcast Advertising Profile

> Particle Pro Company Podcast Advertising Profile 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 company across the podcast ecosystem, including reach metrics and recent ad placements.

## Facts

- Endpoint: GET https://api.particle.pro/v1/companies/:id/podcast/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-company-podcast-advertising-profile-a079f9bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A-R0HeQl3ZOgrdqDhpvB7

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-company-podcast-advertising-profile-a079f9bc
```

Example prompt: Pull up the podcast advertising profile for HubSpot — I want to see their reach metrics and ad placements across the podcast ecosystem since January 1, 2025.

## When to prefer this

Use this endpoint when you need structured podcast advertising intelligence for a specific company — including which shows they sponsor, their reach metrics, and historical ad placement data. Ideal for competitive research, media planning, and brand benchmarking in the podcast space. Prefer this over general web search when you need structured, filterable data with date range control rather than unstructured articles about a brand's advertising.

## Known failure modes

- Unknown company slug or domain returns 404 not found
- Invalid ISO 8601 date format for since/until parameters returns 400 bad request
- Payment not provided or rejected returns 402 payment required
- Company has no podcast advertising data returns empty result set
- Rate limiting or quota exceeded returns 429 too many requests

## How this service works

Get company advertising profile. Returns advertising intelligence for a specific company across the podcast ecosystem, including reach metrics and recent ad placements.

## Output

Returns a structured advertising profile for the specified company including podcast reach metrics (audience size, episode coverage) and a list of recent ad placements (show names, episode dates, ad details) filtered by optional date range.

## 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": {
      "since": {
       "type": "string",
       "description": "Only include ads from episodes published on or after this ISO 8601 date or date-time (e.g. 2025-01-01 or 2025-01-01T00:00:00Z)"
      },
      "until": {
       "type": "string",
       "description": "Only include ads from episodes published before this ISO 8601 date or date-time (e.g. 2026-01-01 or 2026-01-01T00:00:00Z)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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