API: Search Episodes
Search for podcast episodes across the Podwise database.
Endpoint
GEThttps://podwise.ai/api/open/v1/episodes/search
Query Parameters
q(required): The search query string.page: Zero-based page index. Default is0.hitsPerPage: Results per page (max 30). Default is10.
Response
type Response = {
success: true,
result: {
episodeId: string,
seq: number,
title: string,
podcastName: string,
podcastId: string,
// Matched content snippet
content: string,
cover: string,
// Unix timestamp in seconds
publishTime: number,
link: string,
linkType: string,
// Duration in seconds
duration: number,
transcribed: boolean,
language: string,
}[],
estimatedTotalHits: number,
page: number,
hitsPerPage: number,
}Last updated on