API: Process Episode
Submit an episode for processing (transcription and AI analysis). This consumes transcribe credits from your account.
Endpoint
POSThttps://podwise.ai/api/open/v1/episodes/[seq]/process
Path Parameters
seq: Episode sequence number (found in search results or Podwise URL).
Response
type Response = {
success: true,
result: {
// One of: "waiting", "processing", "done"
status: string,
// 100 when status is "done", null otherwise
progress: number | null,
},
}| Status | Description |
|---|---|
waiting | Episode is queued for processing. |
processing | Episode is currently being processed. |
done | Episode has already been processed. progress will be 100. |
Last updated on