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

Query Parameters

limit
integer<int64>
default:25

Results per page

Required range: 1 <= x <= 100
cursor
string

Opaque pagination cursor from previous response

category
string

Filter by category ID

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

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

cursor
string

Pass to next request for more results