example-data.com
Menu
Browse docs and collections

podcast-episodes

podcast-episodes

Page 5 of 26.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/podcast-episodes?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/podcast-episodes?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/podcast-episodes.d.ts https://example-data.com/types/podcast-episodes.d.ts
import type { PodcastEpisode, ListEnvelope } from "./types/podcast-episodes";

const res = await fetch(
  "https://example-data.com/api/v1/podcast-episodes?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<PodcastEpisode>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/podcast-episodes",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 97,
      "podcastId": 5,
      "title": "Vorax abbas acer vito tempore convoco",
      "slug": "vorax-abbas-acer-vito-tempore-convoco-97",
      "description": "Succurro desipio libero communis sol clam non quisquam explicabo aeger. Cursim aer demum terminatio. Demitto speculum adnuo valeo caritas comburo triumphus valeo. Voluptas accusamus cubicularis officia careo aliquam adipiscor tolero.",
      "audioUrl": "https://example.com/podcasts/5/episodes/17.mp3",
      "durationSeconds": 4057,
      "episodeNumber": 17,
      "seasonNumber": 3,
      "publishedAt": "2023-09-27T17:27:08.376Z",
      "createdAt": "2023-09-26T19:55:56.005Z"
    },
    {
      "id": 98,
      "podcastId": 5,
      "title": "Vulariter angelus volup approbo fuga cubicularis volo",
      "slug": "vulariter-angelus-volup-approbo-fuga-cubicularis-volo-98",
      "description": "Benigne vetus socius accusator. Bellicus ter verecundia curis reprehenderit derelinquo. Depopulo communis vulgivagus autem caveo veritas vero quod culpa brevis.",
      "audioUrl": "https://example.com/podcasts/5/episodes/18.mp3",
      "durationSeconds": 1580,
      "episodeNumber": 18,
      "seasonNumber": 5,
      "publishedAt": "2023-11-12T10:07:27.486Z",
      "createdAt": "2023-11-12T09:18:07.301Z"
    },
    {
      "id": 99,
      "podcastId": 5,
      "title": "Tamisium comes decipio addo somnus facere",
      "slug": "tamisium-comes-decipio-addo-somnus-facere-99",
      "description": "Ars sollicito acsi defendo cimentarius maxime vicissitudo eveniet. Casus commodi comminor tollo congregatio cresco. Dapifer doloribus denego allatus decumbo deripio tergum ara.",
      "audioUrl": "https://example.com/podcasts/5/episodes/19.mp3",
      "durationSeconds": 1702,
      "episodeNumber": 19,
      "seasonNumber": 5,
      "publishedAt": "2023-09-06T22:38:00.980Z",
      "createdAt": "2023-09-06T13:19:08.310Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 612,
    "totalPages": 26
  },
  "links": {
    "self": "/api/v1/podcast-episodes?page=5&limit=24",
    "first": "/api/v1/podcast-episodes?page=1&limit=24",
    "last": "/api/v1/podcast-episodes?page=26&limit=24",
    "next": "/api/v1/podcast-episodes?page=6&limit=24",
    "prev": "/api/v1/podcast-episodes?page=4&limit=24"
  }
}