We track the number of podcasts that have implemented podcast2 rss fields and the number of episodes that have transcripts
This endpoint is public and does not require authentication.
1const options = {
2 method: "GET",
3 headers: {
4 "Content-Type": "application/json",
5 "Authorization": "YOUR_API_TOKEN"
6 }
7};
8
9fetch("https://api.podengine.ai/api/v1/rss/stats/public/podcast2", options)
10 .then(response => response.json())
11 .then(data => console.log(data))
12 .catch(error => console.error('Error:', error));
Property | Type | Description |
---|---|---|
status | literal: OK | |
data | object | |
└podcast2Stats | object | |
└podcastLevelStats | object | |
└totalRssFeeds | number | |
└fieldFrequency | array of object | |
└field | string | |
└frequency | number | |
└percentage | number | |
└episodeLevelStats | object | |
└totalRssFeeds | number | |
└fieldFrequency | array of object | |
└field | string | |
└frequency | number | |
└percentage | number | |
└topPodcast2Podcasts | array of object | |
└podcastId | string | |
└host | string | |
└podcastSlug | string | |
└podcastImageUrlnullable | string | |
└rssFeedUrl | string | |
└numPodcast20Fields | number | |
└implementedFields | array of string | |
└topHosts | array of object | |
└host | string | |
└totalPodcasts | number | |
└percentage | number | |
└topHostsWithPodcast2Transcripts | array of object | |
└host | string | |
└totalPodcasts | number | |
└numPodcastsWithTranscripts | number | |
└percentage | number | |
└topHostsWithPodcast2Stats | array of object | |
└host | string | |
└totalPodcasts | number | |
└averageNumPodcast2Fields | number |