# Particle Pro: List Podcast External Links

> Particle Pro: List Podcast External Links is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns all known third-party platform presences for a podcast, including directories like Apple Podcasts and Spotify, social profiles like X and Instagram, and video platforms.

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/:id/external-links
- Price: $0.04/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-podcast-external-links-52d97d4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3lwbso5VbgnOC3usc6o6V

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-podcast-external-links-52d97d4b
```

Example prompt: Can you pull up all the third-party platforms and social profiles where the 'all-in' podcast has a presence — things like Spotify, Apple Podcasts, Instagram, TikTok, and any other directories or social accounts?

## When to prefer this

Use this endpoint when you need a comprehensive, structured list of all third-party platform presences for a specific podcast — including both podcast directories and social media profiles — rather than scraping individual platform search pages. Ideal for competitive research, advertiser due diligence, podcast aggregation tools, or enriching podcast metadata with cross-platform distribution data.

## Known failure modes

- Podcast ID or slug not found — returns 404 or empty results
- Invalid pagination cursor — returns an error or unexpected results
- Podcast has no known external links — returns an empty list
- Rate limiting or payment failure via x402 — returns 402 or 429
- Malformed path parameter — returns 400 bad request

## How this service works

List a podcast's third-party platform presences. Returns every third-party platform on which the podcast has a known presence — podcast directories (Apple Podcasts, Spotify, Castbox, …), social profiles (X, Instagram, TikTok, …), video

## Output

A list of third-party platform entries for the specified podcast, each containing the platform name (e.g., Apple Podcasts, Spotify, Castbox, X, Instagram, TikTok) and the corresponding URL or profile link. Supports keyset pagination via cursor and an optional limit parameter for controlling page size.

## 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 slug (e.g., 'all-in'), internal ID, or numeric iTunes ID"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page (default: all)"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-podcast-external-links-52d97d4b/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)
