AutoContent API Share API

The Share API from AutoContent API — 5 operation(s) for share.

Operations 5

GET /share/podcast/{requestId}/{t} Get shared podcast #
GET /share/video/{requestId}/{t} Get shared video #
GET /share/infographic/{requestId}/{t} Get shared infographic #
GET /share/slide-deck/{requestId}/{t} Get shared slide deck #
GET /share/quiz/{requestId}/{t} Get shared quiz #

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-share-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-share-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AutoContent Content Share 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: Share
paths:
  /share/podcast/{requestId}/{t}:
    parameters:
    - in: path
      name: requestId
      required: true
      schema:
        type: string
    - in: path
      name: t
      required: true
      schema:
        type: string
    get:
      tags:
      - Share
      summary: Get shared podcast
      operationId: sharePodcast
      security: []
      responses:
        '200':
          description: Shared podcast returned
  /share/video/{requestId}/{t}:
    parameters:
    - in: path
      name: requestId
      required: true
      schema:
        type: string
    - in: path
      name: t
      required: true
      schema:
        type: string
    get:
      tags:
      - Share
      summary: Get shared video
      operationId: shareVideo
      security: []
      responses:
        '200':
          description: Shared video returned
  /share/infographic/{requestId}/{t}:
    parameters:
    - in: path
      name: requestId
      required: true
      schema:
        type: string
    - in: path
      name: t
      required: true
      schema:
        type: string
    get:
      tags:
      - Share
      summary: Get shared infographic
      operationId: shareInfographic
      security: []
      responses:
        '200':
          description: Shared infographic returned
  /share/slide-deck/{requestId}/{t}:
    parameters:
    - in: path
      name: requestId
      required: true
      schema:
        type: string
    - in: path
      name: t
      required: true
      schema:
        type: string
    get:
      tags:
      - Share
      summary: Get shared slide deck
      operationId: shareSlideDeck
      security: []
      responses:
        '200':
          description: Shared slide deck returned
  /share/quiz/{requestId}/{t}:
    parameters:
    - in: path
      name: requestId
      required: true
      schema:
        type: string
    - in: path
      name: t
      required: true
      schema:
        type: string
    get:
      tags:
      - Share
      summary: Get shared quiz
      operationId: shareQuiz
      security: []
      responses:
        '200':
          description: Shared quiz returned
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: AutoContent API key as a Bearer token in the Authorization header.