AutoContent API Video API

The Video API from AutoContent API — 12 operation(s) for video.

Operations 12

GET /video/GetAvatars List avatars #
GET /video/GetShorts List shorts videos #
POST /video/CreateShorts Create shorts from audio or feeds #
POST /video/CreateShortsFromContent Create shorts from text content #
POST /video/CreateShortsFromScript Create shorts from custom script #
POST /video/CreateShortsFromDeepResearch Create shorts from deep research #
POST /video/CreateAvatar Create custom avatar #
POST /video/UpdateAvatarVoice Update avatar voice #
GET /video/GetExplainerVideos List explainer videos #
POST /video/Transcribe Transcribe video #
GET /video/Transcript/{videoId} Get explainer video transcript #
GET /video/GenerateIntroImage Generate intro image #

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-video-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-video-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AutoContent Content Video 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: Video
paths:
  /video/GetAvatars:
    get:
      tags:
      - Video
      summary: List avatars
      operationId: getAvatars
      responses:
        '200':
          description: Avatars returned
  /video/GetShorts:
    get:
      tags:
      - Video
      summary: List shorts videos
      operationId: getShorts
      responses:
        '200':
          description: Shorts returned
  /video/CreateShorts:
    post:
      tags:
      - Video
      summary: Create shorts from audio or feeds
      operationId: createShorts
      responses:
        '200':
          description: Job started
  /video/CreateShortsFromContent:
    post:
      tags:
      - Video
      summary: Create shorts from text content
      operationId: createShortsFromContent
      responses:
        '200':
          description: Job started
  /video/CreateShortsFromScript:
    post:
      tags:
      - Video
      summary: Create shorts from custom script
      operationId: createShortsFromScript
      responses:
        '200':
          description: Job started
  /video/CreateShortsFromDeepResearch:
    post:
      tags:
      - Video
      summary: Create shorts from deep research
      operationId: createShortsFromDeepResearch
      responses:
        '200':
          description: Job started
  /video/CreateAvatar:
    post:
      tags:
      - Video
      summary: Create custom avatar
      operationId: createAvatar
      responses:
        '200':
          description: Avatar created
  /video/UpdateAvatarVoice:
    post:
      tags:
      - Video
      summary: Update avatar voice
      operationId: updateAvatarVoice
      responses:
        '200':
          description: Avatar voice updated
  /video/GetExplainerVideos:
    get:
      tags:
      - Video
      summary: List explainer videos
      operationId: getExplainerVideos
      responses:
        '200':
          description: Explainer videos returned
  /video/Transcribe:
    post:
      tags:
      - Video
      summary: Transcribe video
      operationId: transcribeVideo
      responses:
        '200':
          description: Transcription job started
  /video/Transcript/{videoId}:
    parameters:
    - in: path
      name: videoId
      required: true
      schema:
        type: string
    get:
      tags:
      - Video
      summary: Get explainer video transcript
      operationId: getVideoTranscript
      responses:
        '200':
          description: Transcript returned
  /video/GenerateIntroImage:
    get:
      tags:
      - Video
      summary: Generate intro image
      operationId: generateIntroImage
      responses:
        '200':
          description: Intro image returned
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: AutoContent API key as a Bearer token in the Authorization header.