API: List Read Episodes
Retrieve the authenticated user’s read episodes, sorted by most recent first.
Endpoint
GEThttps://podwise.ai/api/open/v1/user/episodes/read
Query Parameters
page: Zero-based page index. Default is0.pageSize: Results per page (max 50). Default is20.
Response
type Response = {
success: true,
result: {
episodeId: string,
seq: number,
title: string,
podcastName: string,
cover: string,
// May be null
epCover: string | null,
// May be null
description: string | null,
// Unix timestamp in seconds
publishTime: number,
link: string,
linkType: string,
// Duration in seconds, may be null
duration: number | null,
transcribed: boolean,
// May be null
language: string | null,
}[],
page: number,
pageSize: number,
}Last updated on