API: List User Clips
Retrieve the authenticated user’s Clips, sorted by creation time with the newest first.
Endpoint
GEThttps://app.podwise.ai/api/open/v1/user/clips
Query Parameters
page: Zero-based page index. Default is0.pageSize: Results per page. Default is20; maximum is50.
Response
type Response = {
success: true,
result: Array<{
id: number,
episodeId: string,
episodeSeq: number,
episodeTitle: string,
episodeCover: string | null,
podcastName: string,
podcastCover: string | null,
title: string,
takeaways: string[],
content: string | null,
point: number,
clipStart: number | null,
clipEnd: number | null,
status: "waiting" | "processing" | "done" | "failed",
exportable: boolean,
// Unix timestamp in seconds
createdAt: number,
}>,
page: number,
pageSize: number,
}The response does not include a total count or signed media URLs. Use Get Clip when playable media is needed.
Last updated on