get_podcast_status
Check podcast episode generation status to retrieve current audio URLs, scripts, outlines, and metadata without polling for updates.
Instructions
Query detailed information of a podcast episode, including generation status, audio URLs, scripts, outline, and metadata. Does not poll - returns current status immediately.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| episodeId | Yes | The complete 24-character episode ID. IMPORTANT: Must be exactly 24 characters. Copy the FULL Episode ID from the Episode ID field in the previous response. |
Input Schema (JSON Schema)
{
"properties": {
"episodeId": {
"description": "The complete 24-character episode ID. IMPORTANT: Must be exactly 24 characters. Copy the FULL Episode ID from the Episode ID field in the previous response.",
"maxLength": 24,
"minLength": 24,
"type": "string"
}
},
"required": [
"episodeId"
],
"type": "object"
}