Podbean API Analytics API

Per-podcast analytics and report downloads.

Operations 3

GET /v1/analytics/podcastReports Get podcast download report CSV URLs #
GET /v1/analytics/podcastEngagementReports Get podcast engagement report CSV URLs #
GET /v1/analytics/podcastAnalyticReports Get podcast analytic reports #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/podbean-api-analytics-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

podbean-api-analytics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Podbean Analytics API
  version: v1
  description: 'Podbean''s HTTP API for managing podcasts, episodes, private members,

    and analytics reports. Uses OAuth 2.0 with the client_credentials

    grant (and a multi-podcast token endpoint for accounts that publish

    several podcasts). Endpoint paths reflect those documented at

    https://developers.podbean.com/podbean-api-docs/ and confirmed

    against open-source Podbean clients.

    '
  contact:
    name: Podbean Developer Documentation
    url: https://developers.podbean.com/podbean-api-docs/
servers:
- url: https://api.podbean.com
  description: Podbean production API
security:
- oauth2ClientCredentials: []
- accessTokenQuery: []
tags:
- name: Analytics
  description: Per-podcast analytics and report downloads.
paths:
  /v1/analytics/podcastReports:
    get:
      tags:
      - Analytics
      operationId: getPodcastReports
      summary: Get podcast download report CSV URLs
      description: Returns download URLs (grouped by month) for podcast download CSV reports.
      parameters:
      - $ref: '#/components/parameters/AccessTokenQuery'
      - in: query
        name: podcast_id
        required: true
        schema:
          type: string
      - in: query
        name: year
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Map of months to one or more CSV URLs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportUrlMap'
  /v1/analytics/podcastEngagementReports:
    get:
      tags:
      - Analytics
      operationId: getPodcastEngagementReports
      summary: Get podcast engagement report CSV URLs
      parameters:
      - $ref: '#/components/parameters/AccessTokenQuery'
      - in: query
        name: podcast_id
        required: true
        schema:
          type: string
      - in: query
        name: year
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Map of months to one or more CSV URLs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportUrlMap'
  /v1/analytics/podcastAnalyticReports:
    get:
      tags:
      - Analytics
      operationId: getPodcastAnalyticReports
      summary: Get podcast analytic reports
      description: Returns a structured analytics report (followers, likes, comments, total_episode_length) for a podcast.
      parameters:
      - $ref: '#/components/parameters/AccessTokenQuery'
      - in: query
        name: podcast_id
        required: true
        schema:
          type: string
      - in: query
        name: types
        schema:
          type: string
          description: Comma-separated report types (e.g. `followers,likes,comments,total_episode_length`).
      responses:
        '200':
          description: Analytics report payload
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
components:
  schemas:
    ReportUrlMap:
      type: object
      properties:
        download_urls:
          type: object
          additionalProperties:
            oneOf:
            - type: string
              format: uri
            - type: array
              items:
                type: string
                format: uri
  parameters:
    AccessTokenQuery:
      in: query
      name: access_token
      required: false
      schema:
        type: string
      description: Access token issued by /v1/oauth/token (may also be sent via Authorization header).
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic for OAuth token requests (client_id / client_secret).
    oauth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.podbean.com/v1/oauth/token
          scopes: {}
    accessTokenQuery:
      type: apiKey
      in: query
      name: access_token
      description: 'Podbean accepts the OAuth bearer token as the `access_token`

        query parameter on resource endpoints.

        '