Top Publishers Report
POST
/api/public/ranker/publishers
const url = 'https://backend.podscribe.ai/api/public/ranker/publishers';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"name":"example","limit":250}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://backend.podscribe.ai/api/public/ranker/publishers \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "example", "limit": 250 }'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 |
|---|---|---|---|
| Rank | number | 1 | Ranking of the publisher based on performance metrics. |
| Publisher | string | PublisherName | Name of the podcast publisher or network. |
| # of Show | number | 100 | Total number of distinct shows under this publisher. |
| Estimated Monthly Audio Reach | number | 1231232 | Estimated number of unique listeners reached per month. |
| Monthly Downloads & Views | number | 1232323 | Sum of monthly downloads and views across all shows. |
| Average ad load | number | 5.32121 | Average number of ads inserted per episode for this publisher. |
Authorizations
Section titled “Authorizations”Request Body
Section titled “Request Body”Media typeapplication/json
object
name
Optional display name for the generated report. Shown in the Reports UI. Ignored when an identical cached report is reused; pass a new request (or wait for cache expiry) to apply a new name.
string
limit
Specifies the maximum number of results to return.
integer
Responses
Section titled “Responses”OK
Media typeapplication/json
object
id
string
status
string
url
string
Examplegenerated
{ "id": "example", "status": "example", "url": "example"}Invalid data
Unexpected error.
Media typeapplication/json
object
message
Nodejs Error
object
Examplegenerated
{ "message": {}}