Skip to main content
GET
/
v1
/
podcasts
/
clips
/
search
Search clips
curl --request GET \
  --url https://api.particle.pro/v1/podcasts/clips/search \
  --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>",
      "relevance_score": 123,
      "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).

Query Parameters

q
string

Semantic search query. At least one of q, entity_id, or company_id is required.

Maximum string length: 500
entity_id
string

Entity slug (e.g., 'elon-musk') or ID. Returns clips featuring this entity.

company_id
string

Company slug (e.g., 'nvidia'), domain (e.g., 'nvidia.com'), or ID. Resolves to the company's linked entity.

episode_id
string

Filter to a specific episode.

podcast_id
string

Podcast slug (e.g., 'all-in') or ID.

type
enum<string>

Clip type filter.

Available options:
SPICY,
CONTROVERSIAL,
EMOTIONAL,
FUNNY,
SHOCKING,
INSIGHTFUL,
INFORMATIVE,
EDUCATIONAL,
PHILOSOPHICAL,
AHA_MOMENT,
NOTABLE_LINE,
BEST_STORY,
DEBATE_DISAGREEMENT
role
enum<string>

Entity role filter. Constrains which clips match the entity_id or company_id.

Available options:
guest,
host,
panelist,
correspondent,
mention
since
string

Only clips from episodes published after this date.

Example:

"2024-01-01"

until
string

Only clips from episodes published before this date.

Example:

"2024-06-01"

sort
enum<string>

Sort order. Defaults to relevance when q is provided, recency otherwise.

Available options:
relevance,
recency
limit
integer<int64>

Maximum results to return (1-25, default 10).

Required range: 1 <= x <= 25

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