Jellypod Docs

Generate a podcast and its first episodes from a topic or sources

POST
/v1/podcasts/generate

Authorization

bearerAuth
AuthorizationBearer <token>

API key issued from /settings/api-keys in the Jellypod studio. Send as Authorization: Bearer <key>.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://api.jellypod.com/v1/podcasts/generate" \  -H "Content-Type: application/json" \  -d '{    "host_ids": [      "string"    ]  }'
{
  "data": {
    "id": "string",
    "title": "string",
    "description": "string",
    "image_url": "string",
    "host_ids": [
      "string"
    ],
    "languages": [
      "string"
    ],
    "show_order": "episodic",
    "show_visibility": "public",
    "url": "string",
    "rss_feed_url": "string",
    "episode_count": 0,
    "created_at": "string",
    "updated_at": "string",
    "episodes": [
      {
        "id": "string",
        "title": "string",
        "status": "generating",
        "episode_number": 0
      }
    ]
  }
}

Was this page helpful?