# Particle Pro Podcast Lookup by External Platform ID

> Particle Pro Podcast Lookup by External Platform ID is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves external platform identifiers (Apple Podcasts, Spotify, YouTube, RSS) to Particle podcast records

## Facts

- Endpoint: GET https://api.particle.pro/v1/podcasts/lookup
- Price: $0.01/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-lookup-by-external-platform-id-22b934aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fwXvoou2cgQmkMUIygi4g

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-lookup-by-external-platform-id-22b934aa
```

Example prompt: Can you look up the podcast with Spotify show ID '3jEBrMqFSjbBrLqAlhiLLF' on Particle Pro and get me its Particle podcast record?

## When to prefer this

Use this endpoint when you have an external podcast identifier (Apple Podcasts, Spotify, YouTube, or an RSS feed URL) and need to map it to a Particle podcast record for further querying — such as fetching related shows, advertiser data, or political bias metrics. Prefer this over a general search when you already know the exact platform-native ID.

## Known failure modes

- Identifier not found on the specified platform returns empty or null result
- Invalid or unsupported platform slug returns an error
- Exceeding the 100-identifier-per-call limit causes a validation error
- Malformed RSS URL when using platform=rss may fail to match
- Rate limiting or payment failure ($0.01 USDC per call) blocks the request

## How this service works

Look up podcasts by external platform identifier. Resolves one or more external platform identifiers (Apple Podcasts collection IDs, Spotify show IDs, YouTube channel IDs, …) — or RSS feed URLs via platform=rss — to Particle podcasts.

## Output

Returns one or more Particle podcast objects matched to the provided external platform identifiers, including Particle's internal podcast ID and associated metadata for each resolved podcast.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "identifier",
      "platform"
     ],
     "properties": {
      "platform": {
       "type": "string",
       "description": "External platform slug (e.g. 'apple', 'spotify', 'youtube'). Must be one of the slugs reported on /v1/podcasts/{id}/external-links responses, or one of the in-house aliases: 'itunes' (alias for 'apple') and 'rss' (match against the canonical podcast feed URL)."
      },
      "identifier": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "One or more platform-native identifiers to resolve. Pass a comma-separated list to look up many at once (max 100 per call)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-podcast-lookup-by-external-platform-id-22b934aa/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)
