Skip to main content
GET
/
v1
/
podcasts
/
guests
/
{id}
/
appearances
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/podcasts/guests/{id}/appearances?limit=25"
{
  "data": [
    {
      "episode": {
        "id": "<string>",
        "title": "<string>",
        "duration_seconds": 123,
        "published_at": "2023-11-07T05:31:56Z",
        "slug": "<string>"
      },
      "podcast": {
        "id": "<string>",
        "title": "<string>",
        "image_url": "<string>",
        "slug": "<string>"
      },
      "bias": "<string>",
      "speaking_seconds": 123,
      "suitability_tier": "<string>"
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.particle.pro/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Pass your API key in the X-API-Key header (recommended).

Path Parameters

id
string
required

Person identifier — slug (recommended) or encoded UUID

Query Parameters

limit
integer<int64>
default:25

Results per page

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from previous response

podcast_id
string

Restrict to appearances on a single podcast (slug or ID)

topic_id
string

Restrict to appearances on episodes classified under this topic

published_after
string

Only appearances published after this ISO 8601 date

published_before
string

Only appearances published before this ISO 8601 date

suitability_tier_max
enum<string>

Restrict to appearances on podcasts at or below this IAB Tech Lab brand-safety tier

Available options:
SAFE,
LIMITED,
SENSITIVE,
UNSAFE
min_speaking_seconds
integer<int64>

Restrict to appearances with identified speaking time above this threshold

Required range: x >= 0

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

cursor
string

Pass to next request for more results