# Particle Pro – Podcast Advertising Recommendations for a Company

> Particle Pro – Podcast Advertising Recommendations for a Company 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 podcasts a company does NOT yet advertise on, ranked by relevance to the shows it already advertises on — a buy-side prospect list for podcast ad placements.

## Facts

- Endpoint: GET https://api.particle.pro/v1/companies/:id/podcast/recommendations
- 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-recommendations-for-a-company-3370909c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yaV-xGOBvjxYYNvo_A5sm

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-recommendations-for-a-company-3370909c
```

Example prompt: Can you pull up the podcast advertising prospects for Squarespace — I want to see the shows they don't currently advertise on, ranked by how related they are to their existing ad placements, in English only, and show me which of their current shows led to each recommendation?

## When to prefer this

Use this endpoint when you need a buy-side prospect list — showing where a brand should advertise next based on its existing podcast ad footprint. Prefer it over the general 'related podcasts' endpoint when the use case is specifically about a company's advertising gap analysis rather than podcast-to-podcast similarity. It is ideal for media planners, ad sales teams, and brand strategists who need actionable, company-specific recommendations rather than generic podcast discovery.

## Known failure modes

- Unknown company identifier returns 404 or empty result
- Company with no existing ad placements returns empty recommendations (nothing to base similarity on)
- Very restrictive min_score or language filter returns zero results within the 200-recommendation cap
- Invalid cursor causes pagination error
- Rate limit or payment failure (x402) blocks the request

## How this service works

List podcasts a company could advertise on next. Returns shows the company does NOT advertise on, ranked by how related they are to the shows it DOES — the buy-side prospect list.

## Output

A ranked list of podcasts the company does not yet advertise on, each with a relevance/calibration score (and optional band/strength tier), an opaque pagination cursor for subsequent pages, and — if include=via is requested — the company's own current ad shows that semantically drove each recommendation.

## 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 identifier — slug, domain, or canonical ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "include": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Optional response sections. Pass include=via to attach, for each recommendation, the company's own shows that led to it — the venues to cite when explaining why the recommendation fits."
      },
      "language": {
       "type": "string",
       "description": "Only shows in this language (ISO 639-1 code, e.g. 'en', 'es'; a region suffix such as 'fr-CA' is reduced to the language), applied within the 200 strongest recommendations the list holds."
      },
      "min_score": {
       "type": "number",
       "format": "double",
       "description": "Only recommendations at or above this score, applied within the 200 strongest recommendations the list holds. Omit (or 0) for every recommendation; the band field is the recommended way to filter by strength."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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