OpusClip transcripts API

The transcripts API from OpusClip — 1 operation(s) for transcripts.

Operations 1

GET /api/transcripts Get a source-video transcript #

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/opusclip-transcripts-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 email required.

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

OpenAPI Specification

opusclip-transcripts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Clip Transcripts API
  description: Clip API documentation
  version: '1.0'
  contact: {}
servers:
- url: https://api.opus.pro
  description: OpusClip Open API Production Server
tags:
- name: transcripts
paths:
  /api/transcripts:
    get:
      operationId: TranscriptController_getTranscript
      summary: Get a source-video transcript
      description: Fetch the trimmed source-video transcript for a project. ASR internals (seek, tokens, log-probabilities, etc.) are stripped. For API callers on a range-limited project, paragraphs are filtered to the billed curation range; internal callers and full-source submissions get the full transcript.
      parameters:
      - name: q
        required: true
        in: query
        description: Query variant. Public callers must pass `findByProjectId`.
        schema:
          type: string
          enum:
          - findByProjectId
      - name: projectId
        required: true
        in: query
        description: Project ID.
        schema:
          type: string
          example: P2120900kDmP
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptResponse'
      security:
      - bearer: []
      tags:
      - transcripts
components:
  schemas:
    TranscriptExportWord:
      type: object
      description: A single word with start/end timings and optional filler-word flag.
      properties:
        word:
          type: string
          description: The word.
          example: hello
        start:
          type: number
          description: Start time in seconds.
          example: 0.12
        end:
          type: number
          description: End time in seconds.
          example: 0.48
        isFillerWord:
          type: boolean
          description: True if the word is a filler (um, uh, ...).
          example: false
      required:
      - word
      - start
      - end
    TranscriptExportParagraph:
      type: object
      description: A paragraph of the transcript with timing and optional speaker attribution.
      properties:
        id:
          type: integer
          description: Paragraph index within the transcript.
          example: 0
        start:
          type: number
          description: Start time in seconds.
          example: 0
        end:
          type: number
          description: End time in seconds.
          example: 10.5
        text:
          type: string
          description: Paragraph text.
          example: Hello and welcome to the show.
        speaker:
          type: string
          description: Speaker label, when diarization is available.
          example: SPEAKER_00
        words:
          type: array
          items:
            $ref: '#/components/schemas/TranscriptExportWord'
          description: Per-word timings inside this paragraph.
      required:
      - id
      - start
      - end
      - text
      - words
    TranscriptResponse:
      type: object
      description: Wrapper for the transcript response. `data[0]` is the transcript, or `null` when the project has no transcript yet.
      properties:
        data:
          type: array
          items:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/TranscriptExportParagraph'
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http