reapxdev commited on
Commit
72d9dce
·
verified ·
1 Parent(s): ae810d1

2,189 rows from 51 collector runs

Browse files
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: "Apple Podcasts Scraper \u00b7 Shows, Episodes, Genres & Rankings"
6
+ size_categories:
7
+ - 1K<n<10K
8
+ tags:
9
+ - "reapx"
10
+ - "web-scraping"
11
+ - "open-data"
12
+ - "apple-podcasts-scraper"
13
+ - "apple"
14
+ - "podcasts"
15
+ - "shows"
16
+ - "episodes"
17
+ - "genres"
18
+ - "rankings"
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: apple-podcasts-scraper.jsonl
24
+ ---
25
+
26
+ ![reapX — public sources in, addressable records out](https://reapx.dev/reapx.gif)
27
+
28
+ # Apple Podcasts Scraper · Shows, Episodes, Genres & Rankings
29
+
30
+ Scrape Apple Podcasts catalog, shows, episodes, top charts, genres, and rankings. HTTP-only iTunes Search API scraper for audio analytics, podcast discovery, and media datasets.
31
+
32
+ | | |
33
+ | --- | --- |
34
+ | Rows in this dataset | 2,189 |
35
+ | Fields | 20 |
36
+ | Collector runs behind it | 51 |
37
+ | Most recent observation | 2026-08-03 |
38
+
39
+ ## What this is
40
+
41
+ Every row here was returned by a real run of a public collector. Nothing is generated from a
42
+ template over a keyword list: a row exists because a run observed it.
43
+
44
+ ## Provenance
45
+
46
+ Each row carries `_run_id` and `_dataset_id`, naming the collector run that produced it, so any
47
+ row can be traced back to the run that observed it. Rows observed by more than one run are
48
+ deduplicated on content; 0 duplicate observations were collapsed.
49
+
50
+ ## Files
51
+
52
+ - `apple-podcasts-scraper.jsonl` — one JSON object per row, the canonical form
53
+ - `apple-podcasts-scraper.csv` — the same rows flattened; nested values are JSON-encoded within their cell
54
+ so they round-trip
55
+ - `dataset.json` — schema.org `Dataset` metadata
56
+
57
+ ## Loading it
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+ ds = load_dataset("reapxdev/apple-podcasts-scraper", split="train")
62
+ ```
63
+
64
+ ## Related
65
+
66
+ - All sources: <https://reapx.dev/data/> · machine-readable index: <https://reapx.dev/llms.txt>
67
+ - The collector is a public Apify Actor; agents reach it through <https://mcp.apify.com>
68
+
69
+ ## Licence
70
+
71
+ Collected from public sources. This metadata and the published pages are
72
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/); the underlying records remain under
73
+ the terms of their originating source.
apple-podcasts-scraper.csv ADDED
The diff for this file is too large to render. See raw diff
 
apple-podcasts-scraper.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
dataset.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": "https://schema.org",
3
+ "@type": "Dataset",
4
+ "@id": "https://reapx.dev/data/apple-podcasts-scraper/",
5
+ "name": "Apple Podcasts Scraper \u00b7 Shows, Episodes, Genres & Rankings",
6
+ "description": "Scrape Apple Podcasts catalog, shows, episodes, top charts, genres, and rankings. HTTP-only iTunes Search API scraper for audio analytics, podcast discovery, and media datasets.",
7
+ "url": "https://reapx.dev/data/apple-podcasts-scraper/",
8
+ "identifier": "apple-podcasts-scraper",
9
+ "license": "https://creativecommons.org/licenses/by/4.0/",
10
+ "creator": {
11
+ "@type": "Organization",
12
+ "name": "reapx",
13
+ "url": "https://reapx.dev"
14
+ },
15
+ "isAccessibleForFree": true,
16
+ "dateModified": "2026-08-03",
17
+ "variableMeasured": "",
18
+ "distribution": [
19
+ {
20
+ "@type": "DataDownload",
21
+ "encodingFormat": "text/html",
22
+ "contentUrl": "https://reapx.dev/data/apple-podcasts-scraper/"
23
+ }
24
+ ],
25
+ "measurementTechnique": "Apify Actor reapx/apple-podcasts-scraper",
26
+ "sameAs": "https://apify.com/reapx/apple-podcasts-scraper"
27
+ }