API: Search Podcasts
Search for podcasts across the Podwise database.
Endpoint
GEThttps://podwise.ai/api/open/v1/podcasts/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: {
podcastId: string,
seq: number,
name: string,
owner: string,
cover: string,
description: string,
genre: string,
// Unix timestamp in seconds
lastPublishTime: number,
}[],
estimatedTotalHits: number,
page: number,
hitsPerPage: number,
}Last updated on