AutoContent API Podcast API

The Podcast API from AutoContent API — 3 operation(s) for podcast.

Operations 6

GET /podcast/rss/{podcastId} Get podcast RSS feed #
GET /podcast/shows List podcast shows #
POST /podcast/shows Create podcast show #
GET /podcast/shows/{podcastId} Get podcast show #
PUT /podcast/shows/{podcastId} Update podcast show #
DELETE /podcast/shows/{podcastId} Delete podcast show #

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/autocontent-api-podcast-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

autocontent-api-podcast-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AutoContent Content Podcast API
  description: 'Best-effort OpenAPI 3.1 description of the AutoContent API for generating

    podcasts, videos, slide decks, infographics, transcripts and other content

    types. Derived from the public documentation index at

    https://docs.autocontentapi.com/llms-full.txt and the developer portal at

    https://autocontentapi.com/docs.

    '
  version: '1'
  contact:
    name: AutoContent API Docs
    url: https://docs.autocontentapi.com/
servers:
- url: https://api.autocontentapi.com
  description: AutoContent API production
security:
- bearerAuth: []
tags:
- name: Podcast
paths:
  /podcast/rss/{podcastId}:
    parameters:
    - in: path
      name: podcastId
      required: true
      schema:
        type: string
    get:
      tags:
      - Podcast
      summary: Get podcast RSS feed
      operationId: getPodcastRss
      responses:
        '200':
          description: RSS XML returned
  /podcast/shows:
    get:
      tags:
      - Podcast
      summary: List podcast shows
      operationId: listShows
      responses:
        '200':
          description: Shows returned
    post:
      tags:
      - Podcast
      summary: Create podcast show
      operationId: createShow
      responses:
        '201':
          description: Show created
  /podcast/shows/{podcastId}:
    parameters:
    - in: path
      name: podcastId
      required: true
      schema:
        type: string
    get:
      tags:
      - Podcast
      summary: Get podcast show
      operationId: getShow
      responses:
        '200':
          description: Show returned
    put:
      tags:
      - Podcast
      summary: Update podcast show
      operationId: updateShow
      responses:
        '200':
          description: Show updated
    delete:
      tags:
      - Podcast
      summary: Delete podcast show
      operationId: deleteShow
      responses:
        '204':
          description: Show deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: AutoContent API key as a Bearer token in the Authorization header.