API: Popular Episodes
Retrieve the current trending/popular episodes across all languages.
Endpoint
GEThttps://podwise.ai/api/open/v1/episodes/popular
Query Parameters
limit: Number of results to return (max 100). Default is20.
Response
type Response = {
success: true,
result: {
episodeId: string,
seq: number,
title: string,
podcastName: string,
podcastSeq: number,
cover: string,
// May be null
epCover: string | null,
linkType: string,
// Duration in seconds, may be null
duration: number | null,
}[],
}Last updated on