API: List Followed Podcasts
Retrieve the list of podcasts the authenticated user has followed that have new episodes within a date range, sorted by last publish time (newest first).
Endpoint
GEThttps://podwise.ai/api/open/v1/user/podcasts/followed
Query Parameters
date: End date inYYYY-MM-DDformat. The query covers up to this date (inclusive). Default is today.days: Number of days to look back fromdate(inclusive). Max 30. Default is7.
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,
isStarred: boolean,
isPrivate: boolean,
// Unix timestamp in seconds
followedAt: number,
}[],
}Last updated on