Skip to main content
GET
/
v1
/
podcasts
/
episodes
/
{id}
/
clips
List clips for an episode
curl --request GET \
  --url https://api.particle.pro/v1/podcasts/episodes/{id}/clips \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "duration_seconds": 123,
      "end_seconds": 123,
      "engagement_score": 123,
      "id": "<string>",
      "start_seconds": 123,
      "title": "<string>",
      "type": "<string>",
      "audio_url": "<string>",
      "description": "<string>",
      "episode": {
        "id": "<string>",
        "title": "<string>",
        "podcast": {
          "id": "<string>",
          "title": "<string>",
          "image_url": "<string>",
          "slug": "<string>"
        },
        "published_at": "2023-11-07T05:31:56Z"
      },
      "intro_statement": "<string>",
      "segment": {
        "id": "<string>",
        "title": "<string>",
        "type": "<string>"
      },
      "speaker": {
        "name": "<string>",
        "company": {
          "id": "<string>",
          "domain": "<string>",
          "ticker": "<string>"
        },
        "entity_id": "<string>",
        "entity_slug": "<string>",
        "person": {
          "id": "<string>",
          "company": "<string>",
          "image_url": "<string>",
          "title": "<string>"
        },
        "role": "<string>"
      }
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Authorizations

X-API-Key
string
header
required

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

Path Parameters

id
string
required

Episode ID

Query Parameters

limit
integer<int64>
default:25

Results per page

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

Opaque pagination cursor from previous response

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