Skip to main content
GET
/
v1
/
podcasts
/
{id}
Show podcast
curl --request GET \
  --url https://api.kajabi.com/v1/podcasts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "podcasts",
    "attributes": {
      "title": "<string>",
      "description": "<string>",
      "language": "<string>",
      "owner_email": "<string>",
      "author": "<string>",
      "status": "ready",
      "show_type": "episodic",
      "thumbnail_url": "<string>",
      "cover_art_url": "<string>",
      "categories": [
        "<string>"
      ],
      "directories": [
        {
          "id": "<string>",
          "url": "<string>",
          "config": {}
        }
      ],
      "migrated_to_url": "<string>",
      "migrated": true,
      "public": true,
      "ready": true,
      "distribution_ready": true,
      "url": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "relationships": {
      "site": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Podcast ID

Response

Podcast details

data
object