# Particle Pro – Get Advertising Sponsor

> Particle Pro – Get Advertising 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).

Retrieves a single podcast advertising sponsor by ID, domain, or slug, with activity metrics filtered by optional date range.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/advertising/sponsors/:id
- 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-get-advertising-sponsor-ad26102b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qhuKHe0zB2w2JCDOeHbFP

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-get-advertising-sponsor-ad26102b
```

Example prompt: Pull up the Particle Pro sponsor profile for squarespace.com and show me their podcast ad activity from 2024-01-01 to 2024-12-31.

## When to prefer this

Use this endpoint when you need detailed advertising activity metrics for a specific known sponsor, identified by company domain, slug, or ID. Prefer this over list endpoints when you already know which company you're researching and want focused metrics rather than ranked or paginated results. Ideal for brand intelligence, competitive ad-spend research, or validating whether a specific company is actively advertising on podcasts.

## Known failure modes

- Sponsor ID not found — 404 if the provided ID, domain, or slug doesn't match any sponsor
- Multiple alias match resolved to most-recently-active sponsor — may not be the intended sponsor
- Invalid date format for since/until — 400 if not valid ISO 8601
- Empty metrics if no ads fall within the specified date range
- Company exists but has no sponsorship history — returns sponsor with zero activity metrics

## How this service works

Get a sponsor. Returns a single advertising sponsor with activity metrics.

## Output

Returns a single sponsor object including the sponsor's identity (linked company, aliases), and advertising activity metrics such as ad counts and episode coverage, optionally scoped to a date range defined by since/until parameters.

## 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. When a company reference matches multiple sponsor aliases, the most-recently-active sponsor is returned."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "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"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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