Jellypod Docs

List podcasts

GET
/v1/podcasts

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Query Parameters

cursor?string
limit?integer
Default20
Range1 <= value <= 100

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://api.jellypod.com/v1/podcasts"
{
  "data": [
    {
      "id": "string",
      "title": "string",
      "description": "string",
      "image_url": "string",
      "host_ids": [
        "string"
      ],
      "languages": [
        "string"
      ],
      "episode_order": "episodic",
      "visibility": "public",
      "url": "string",
      "rss_feed_url": "string",
      "episode_count": 0,
      "created_at": "string",
      "updated_at": "string"
    }
  ]
}

Was this page helpful?