# Particle Pro – List Ad Segments for Sponsor

> Particle Pro – List Ad Segments for Sponsor 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 individual podcast ad segments attributed to a specific sponsor, ordered by episode publication date descending, with optional filtering by podcast and date range.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/advertising/sponsors/:id/segments
- 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-ad-segments-for-sponsor-58b74a4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U5DOxTj3fKhJ420RltdFc

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-ad-segments-for-sponsor-58b74a4f
```

Example prompt: Show me all the individual podcast ad segments attributed to HubSpot, scoped to the 'My First Million' podcast, for episodes published since January 1, 2024.

## When to prefer this

Use this endpoint when you need granular, per-segment ad placement data for a specific sponsor rather than aggregate advertising intelligence. Prefer this over the company advertising profile endpoint when you need a chronological feed of individual ad segments with date-range filtering or podcast-scoped results. Best for tracking campaign recency, auditing ad frequency, or building historical timelines of a brand's podcast presence.

## Known failure modes

- Invalid or unknown sponsor ID returns a 404 not found error
- Malformed ISO 8601 date in `since` or `until` causes a 400 bad request
- Invalid pagination cursor causes a 400 or empty result set
- Unknown podcast_id causes empty results or 404
- Exceeding rate limits or payment failure (x402) results in 402 Payment Required
- No segments found for sponsor returns empty list with no error

## How this service works

List ad segments for a sponsor. Returns the individual ad segments attributed to a sponsor, ordered by episode publication date descending, optionally scoped to a single podcast.

## Output

A paginated list of individual ad segment objects attributed to the specified sponsor, ordered newest-episode-first. Each segment includes metadata about the episode, podcast, and ad placement. A cursor is returned for keyset pagination through additional results.

## 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": "Sponsor ID, company ID, company domain, or company slug"
      }
     }
    },
    "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 from episodes published before this ISO 8601 date or date-time"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      },
      "podcast_id": {
       "type": "string",
       "description": "Scope results to one podcast by slug, internal ID, or numeric iTunes ID"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-ad-segments-for-sponsor-58b74a4f/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)
