API: Send Episode to Readwise Reader
Send a processed episode’s content to your connected Readwise Reader account. Requires Readwise API token to be configured in Podwise settings.
Endpoint
POSThttps://podwise.ai/api/open/v1/episodes/[seq]/send/reader
Path Parameters
seq: Episode sequence number.
Request Body
All fields are optional.
type RequestBody = {
// Include mindmap as nested list. Default: false
mindmap?: boolean,
// Group transcript by outline sections. Default: true
mixOutlines?: boolean,
// Include episode shownotes. Default: false
shownotes?: boolean,
// Where to save in Reader. One of: "new" (inbox), "later", "archive". Default: "archive"
location?: "new" | "later" | "archive",
// Translation language code (e.g., "zh", "ja"). null for original language
translation?: string | null,
// Show both original and translated text when translation is set. Default: false
mixWithOriginLanguage?: boolean,
}Response
type Response = {
success: true,
result: {
// URL of the created Readwise Reader entry
url: string,
},
}Last updated on