Skip to main content
GET
/
v1
/
podcasts
List podcasts
curl --request GET \
  --url https://api.kajabi.com/v1/podcasts \
  --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>"
          }
        }
      }
    }
  ],
  "links": {
    "self": "<string>",
    "first": "<string>",
    "prev": "<string>",
    "next": "<string>",
    "last": "<string>"
  },
  "meta": {
    "total_pages": 123,
    "total_count": 123,
    "current_page": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

filter[site_id]
string

Filter by site ID, for example ?filter[site_id]=123

filter[title_eq]
string

Filter by exact title match, for example ?filter[title_eq]=My Podcast

filter[title_cont]
string

Filter by title containing text, for example ?filter[title_cont]=technology

filter[status_eq]
string

Filter by status, for example ?filter[status_eq]=ready

filter[show_type_eq]
string

Filter by show type, for example ?filter[show_type_eq]=episodic

sort
string

Sort results by field, for example ?sort=title or ?sort=-title (descending)

page[number]
integer

Page number for pagination, for example ?page[number]=1

page[size]
integer

Number of items per page, for example ?page[size]=10

fields[podcasts]
string

Comma-separated list of fields to include, for example ?fields[podcasts]=title,description

Response

List of podcasts

data
object[]
meta
object