# Particle Pro: Get Podcast Publisher

> Particle Pro: Get Podcast Publisher 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 detailed metadata for a single podcast publisher identified by slug or ID

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/publishers/: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-podcast-publisher-61f9ed90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Y0usX7_i6a9XRmwZ61gH

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-podcast-publisher-61f9ed90
```

Example prompt: Can you pull up the publisher profile for iHeartPodcasts from Particle Pro — I need to see their full publisher details?

## When to prefer this

Use this endpoint when you need to resolve a specific podcast publisher by their human-readable slug (e.g., 'goalhanger', 'iheartpodcasts', 'bbc-radio-4') or internal ID into a full publisher record. Prefer slugs over IDs for stability. Choose this over list or search endpoints when you already know the publisher identifier and need a direct, authoritative lookup rather than discovery.

## Known failure modes

- Unknown slug or ID returns a 404 not found error
- Malformed or missing :id path parameter results in a 400 bad request
- Payment not completed (x402 protocol) returns a 402 Payment Required response
- Rate limiting or quota exceeded returns a 429 response
- Valid slug that has been retired or renamed may return no results

## How this service works

Get a podcast publisher. Returns a single podcast publisher by slug (e.g., 'goalhanger', 'iheartpodcasts', 'bbc-radio-4') or ID.

## Output

A single podcast publisher object containing the publisher's name, slug (stable human-readable identifier), ID, and associated metadata such as network affiliation, description, and any other attributes returned by the Particle Pro publisher endpoint.

## 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": "Podcast publisher slug (e.g., 'goalhanger', 'iheartpodcasts', 'bbc-radio-4') or ID. Slugs are stable, human-readable identifiers returned on every publisher response and are the recommended way to reference a publisher in URLs."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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