Skip to Content
Open API v1API: List Followed Podcasts

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 in YYYY-MM-DD format. The query covers up to this date (inclusive). Default is today.
  • days: Number of days to look back from date (inclusive). Max 30. Default is 7.

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