Skip to main content
GET
/
v1
/
podcasts
/
{id}
Get a podcast
curl --request GET \
  --url https://api.example.com/v1/podcasts/{id}
{
  "explicit": true,
  "id": "<string>",
  "title": "<string>",
  "$schema": "<string>",
  "categories": [
    "<string>"
  ],
  "description": "<string>",
  "image_url": "<string>",
  "language": "<string>",
  "url": "<string>"
}

Path Parameters

id
string
required

Podcast ID

Response

OK

explicit
boolean
required

Whether the podcast contains explicit content

id
string
required

Unique identifier

title
string
required

Podcast title

$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/Podcast.json"

categories
string[] | null

Category names

description
string

Podcast description

image_url
string

Cover image URL

language
string

ISO 639-1 language code

url
string

RSS feed URL