Skip to main content
Given one show, which other shows are like it? Particle API answers with a ranked, explainable list computed from what is actually in the audio and the metadata around it: the content of recent episodes (embedded transcripts), the show’s topic profile, the guests it books, the network it belongs to, and the advertisers it carries. Every result carries a calibrated score, a coarse band, and — on request — the specific signals that make the pair related, so a client can tell “same beat, same audience” from “same network, different subject” instead of trusting a bare number. Related sets are precomputed per show and refreshed as new episodes arrive, so the endpoint is a fast page read rather than a live search.
Response (truncated)
The podcast detail embeds the lean form on request, so one call answers “what else is like this” without a second round trip. The same include parameter also takes recommended_guests (the five guests the show could book next) and recommended_sponsors (premium-grade; the five advertisers active on shows like this one that do not buy it yet), the inline forms of /recommendations/guests and /recommendations/sponsors:
Response (truncated)
related is omitted when the show’s set has not been computed yet. The full list, pagination, and the basis live on GET /v1/podcasts/{id}/related.

Reading a result

Related shows are restricted to the source show’s language, and a show’s own list never contains itself. A show whose related set has not been computed yet returns 200 with an empty data array, not 404 — the show exists; its relatedness simply has not landed.

MCP

The same data is available to agents as particle_podcast_list_related (with include: ["basis"]), and inline on particle_podcast_resolve via include: ["related"].

Choosing the right endpoint

How it is computed

For each show, candidates come from five independent arms — nearest shows by content centroid, shows sharing a guest, shows concentrated in its most specific topics, the show’s own publisher, and shows sharing a sponsor — and every candidate is scored on all signals at once, so a show with no embedded episodes still gets neighbours from its guests, topics and network. Sets are recomputed when new episodes land, coalesced so a daily show recomputes a few times a day rather than once per episode. The ranker was validated against an external listener-behaviour reference (Apple’s “You Might Also Like” lists), a temporal shared-guest holdout, and a calibrated editorial judge; the methodology and the measured recall and precision figures are published with the changelog entry for this endpoint once the full-catalogue evaluation completes.