Kumospace Transcription API

The Transcription API from Kumospace — 5 operation(s) for transcription.

Operations 5

POST /v1/transcription/started #
POST /v1/transcription/stopped #
GET /v1/transcription #
GET /v1/transcription/{id}/summary #
GET /v1/transcription/{id}/vtt #

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/kumospace-transcription-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

kumospace-transcription-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '@kumo/api Account Transcription API'
  contact: {}
servers:
- url: /
tags:
- name: Transcription
paths:
  /v1/transcription/started:
    post:
      operationId: HandleTranscriptionStarted
      responses:
        '201':
          description: Created
      tags:
      - Transcription
      security:
      - firebase: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiHandleTranscriptionStartedRequest'
  /v1/transcription/stopped:
    post:
      operationId: HandleTranscriptionStopped
      responses:
        '204':
          description: No content
      tags:
      - Transcription
      security:
      - firebase: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiHandleTranscriptionStoppedRequest'
  /v1/transcription:
    get:
      operationId: GetTranscription
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiTranscription'
      tags:
      - Transcription
      security:
      - firebase: []
      parameters:
      - in: query
        name: recordingGroupId
        required: true
        schema:
          type: string
  /v1/transcription/{id}/summary:
    get:
      operationId: GetSummary
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  summary:
                    type: string
                required:
                - summary
                type: object
      tags:
      - Transcription
      security:
      - firebase: []
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
  /v1/transcription/{id}/vtt:
    get:
      operationId: GetVtt
      responses:
        '302':
          description: Redirect
      tags:
      - Transcription
      security:
      - firebase: []
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
components:
  schemas:
    ApiHandleTranscriptionStoppedRequest:
      properties:
        endTimestamp:
          type: number
          format: double
        id:
          type: string
      required:
      - endTimestamp
      - id
      type: object
    ApiHandleTranscriptionStartedRequest:
      properties:
        recordingGroupId:
          type: string
        startTimestamp:
          type: number
          format: double
        ownerFirebaseUid:
          type: string
        roomId:
          type: string
        spaceUid:
          type: string
        id:
          type: string
      required:
      - startTimestamp
      - ownerFirebaseUid
      - roomId
      - spaceUid
      - id
      type: object
    ApiTranscription:
      properties:
        recordingGroupId:
          type: string
        summaryJob:
          properties:
            status:
              type: string
              enum:
              - in-progress
              - error
              - finished
            id:
              type: string
          required:
          - status
          - id
          type: object
        endTimestamp:
          type: number
          format: double
        startTimestamp:
          type: number
          format: double
        ownerFirebaseUid:
          type: string
        roomId:
          type: string
        spaceUid:
          type: string
        id:
          type: string
      required:
      - startTimestamp
      - ownerFirebaseUid
      - roomId
      - spaceUid
      - id
      type: object
  securitySchemes:
    firebase:
      type: http
      scheme: bearer
      bearerFormat: JWT