Show Audience Size by Month (Note - only prefix impressions included)
GET
/api/public/series/audience-size/{podscribe_show_id}
const url = 'https://backend.podscribe.ai/api/public/series/audience-size/example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://backend.podscribe.ai/api/public/series/audience-size/example \ --header 'Authorization: Bearer <token>'This endpoint utilizes a task system.
Please read the description of Get status of file processing to understand how it works.
Result file format:
| Field | Type | Example | Description |
|---|---|---|---|
| Date | string | 2026-04-01 | Month bucket in YYYY-MM-DD format. |
| Prefix Downloads | number | 128450 | Prefix download count for episodes in that month. |
| Unique reach | number | 84210 | Estimated unique reach for that month. |
| Episodes Published | number | 12 | Number of episodes published for the show that month. |
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”podscribe_show_id
required
string
The Podscribe show ID
Query Parameters
Section titled “Query Parameters”advertiser
string
The advertiser to get data for
Responses
Section titled “Responses”OK
Media typeapplication/json
object
id
string
status
string
url
string
Examplegenerated
{ "id": "example", "status": "example", "url": "example"}Unprocessable Entity
Unexpected error.
Media typeapplication/json
object
message
Nodejs Error
object
Examplegenerated
{ "message": {}}