AutoContent API Content API

The Content API from AutoContent API — 24 operation(s) for content.

Operations 24

GET /content/Usage Get credit usage and limits #
GET /content/QueueStats Get queue stats #
GET /content/QueueRequests List queued or processing requests #
GET /content/Podcasts List podcasts #
GET /content/Transcripts List transcripts #
POST /content/Create Create content #
POST /content/Repurpose Repurpose existing content #
GET /content/Status/{id} Get request status #
GET /content/List List content requests #
GET /content/GetVoices List voices #
GET /content/Me Get current client #
POST /content/Webhook Register webhook #
POST /content/RemoveWebhook Remove webhook #
GET /content/Webhooks List webhooks #
POST /content/ModifyPodcast Modify podcast #
POST /content/SeparateSpeakersAudio Separate speakers in audio #
POST /content/CloneVoice Clone voice #
POST /content/GetTranscript Generate transcript #
GET /content/GetTranscript/{episodeId} Get transcript by episode ID #
POST /content/CreatePodcastCustomScript Create podcast from custom script #
POST /content/CreatePodcastCustomVoices Create podcast with custom voices #
POST /content/RemoveVoice Remove cloned voice #
POST /content/DeleteRequest Delete a request #
POST /content/Schedule Schedule multiple podcasts #

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-content-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-content-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AutoContent Content 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: Content
paths:
  /content/Usage:
    get:
      tags:
      - Content
      summary: Get credit usage and limits
      operationId: getUsage
      responses:
        '200':
          description: Usage returned
  /content/QueueStats:
    get:
      tags:
      - Content
      summary: Get queue stats
      operationId: getQueueStats
      responses:
        '200':
          description: Queue stats returned
  /content/QueueRequests:
    get:
      tags:
      - Content
      summary: List queued or processing requests
      operationId: getQueueRequests
      responses:
        '200':
          description: Queue requests returned
  /content/Podcasts:
    get:
      tags:
      - Content
      summary: List podcasts
      operationId: getPodcasts
      responses:
        '200':
          description: Podcasts returned
  /content/Transcripts:
    get:
      tags:
      - Content
      summary: List transcripts
      operationId: getTranscripts
      responses:
        '200':
          description: Transcripts returned
  /content/Create:
    post:
      tags:
      - Content
      summary: Create content
      description: Generate new content (audio, video, infographic, etc.).
      operationId: createContent
      responses:
        '200':
          description: Content creation started
  /content/Repurpose:
    post:
      tags:
      - Content
      summary: Repurpose existing content
      operationId: repurposeContent
      responses:
        '200':
          description: Repurpose started
  /content/Status/{id}:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      tags:
      - Content
      summary: Get request status
      operationId: getStatus
      responses:
        '200':
          description: Status returned
  /content/List:
    get:
      tags:
      - Content
      summary: List content requests
      operationId: listContent
      responses:
        '200':
          description: Requests returned
  /content/GetVoices:
    get:
      tags:
      - Content
      summary: List voices
      operationId: getVoices
      responses:
        '200':
          description: Voices returned
  /content/Me:
    get:
      tags:
      - Content
      summary: Get current client
      operationId: getMe
      responses:
        '200':
          description: Client identity returned
  /content/Webhook:
    post:
      tags:
      - Content
      summary: Register webhook
      operationId: registerWebhook
      responses:
        '200':
          description: Webhook registered
  /content/RemoveWebhook:
    post:
      tags:
      - Content
      summary: Remove webhook
      operationId: removeWebhook
      responses:
        '200':
          description: Webhook removed
  /content/Webhooks:
    get:
      tags:
      - Content
      summary: List webhooks
      operationId: listWebhooks
      responses:
        '200':
          description: Webhooks returned
  /content/ModifyPodcast:
    post:
      tags:
      - Content
      summary: Modify podcast
      operationId: modifyPodcast
      responses:
        '200':
          description: Podcast modified
  /content/SeparateSpeakersAudio:
    post:
      tags:
      - Content
      summary: Separate speakers in audio
      operationId: separateSpeakers
      responses:
        '200':
          description: Job started
  /content/CloneVoice:
    post:
      tags:
      - Content
      summary: Clone voice
      operationId: cloneVoice
      responses:
        '200':
          description: Voice clone job started
  /content/GetTranscript:
    post:
      tags:
      - Content
      summary: Generate transcript
      operationId: generateTranscript
      responses:
        '200':
          description: Transcript job started
  /content/GetTranscript/{episodeId}:
    parameters:
    - in: path
      name: episodeId
      required: true
      schema:
        type: string
    get:
      tags:
      - Content
      summary: Get transcript by episode ID
      operationId: getTranscriptByEpisode
      responses:
        '200':
          description: Transcript returned
  /content/CreatePodcastCustomScript:
    post:
      tags:
      - Content
      summary: Create podcast from custom script
      operationId: createPodcastCustomScript
      responses:
        '200':
          description: Job started
  /content/CreatePodcastCustomVoices:
    post:
      tags:
      - Content
      summary: Create podcast with custom voices
      operationId: createPodcastCustomVoices
      responses:
        '200':
          description: Job started
  /content/RemoveVoice:
    post:
      tags:
      - Content
      summary: Remove cloned voice
      operationId: removeVoice
      responses:
        '200':
          description: Voice removed
  /content/DeleteRequest:
    post:
      tags:
      - Content
      summary: Delete a request
      operationId: deleteRequest
      responses:
        '200':
          description: Request deleted
  /content/Schedule:
    post:
      tags:
      - Content
      summary: Schedule multiple podcasts
      operationId: schedulePodcasts
      responses:
        '200':
          description: Schedule created
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: AutoContent API key as a Bearer token in the Authorization header.