Resemble AI subpackage_speechToText API

The subpackage_speechToText API from Resemble AI — 5 operation(s) for subpackage_speechtotext.

Operations 6

GET /speech-to-text List transcripts #
POST /speech-to-text Create transcript job #
GET /speech-to-text/{uuid} Get transcript #
POST /speech-to-text/{uuid}/ask Ask intelligence question #
GET /speech-to-text/{uuid}/questions List intelligence questions #
GET /speech-to-text/{uuid}/questions/{question_uuid} Get intelligence question status #

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/resemble-ai-subpackage-speechtotext-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

resemble-ai-subpackage-speechtotext-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Speech To Text API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_speechToText
paths:
  /speech-to-text:
    get:
      operationId: list-transcripts
      summary: List transcripts
      description: Retrieve paginated list of transcript jobs
      tags:
      - subpackage_speechToText
      parameters:
      - name: page
        in: query
        required: true
        schema:
          type: integer
          default: 1
      - name: per_page
        in: query
        required: false
        schema:
          type: integer
          default: 25
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of transcripts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speech-to-Text_listTranscripts_Response_200'
    post:
      operationId: create-transcript
      summary: Create transcript job
      description: Submit audio or video for transcription
      tags:
      - subpackage_speechToText
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Transcript job created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speech-to-Text_createTranscript_Response_200'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                  description: Audio or video file (max 500 MB, 20 minutes)
                query:
                  type: string
                  description: Optional intelligence question to evaluate after transcription
  /speech-to-text/{uuid}:
    get:
      operationId: get-transcript
      summary: Get transcript
      description: Retrieve transcript status, text, and timestamps
      tags:
      - subpackage_speechToText
      parameters:
      - name: uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Transcript details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speech-to-Text_getTranscript_Response_200'
  /speech-to-text/{uuid}/ask:
    post:
      operationId: ask-transcript-question
      summary: Ask intelligence question
      description: Submit a question about a completed transcript
      tags:
      - subpackage_speechToText
      parameters:
      - name: uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Question submitted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speech-to-Text_askTranscriptQuestion_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                query:
                  type: string
                  description: Question to ask about the transcript
              required:
              - query
  /speech-to-text/{uuid}/questions:
    get:
      operationId: list-transcript-questions
      summary: List intelligence questions
      description: List all questions asked about a transcript
      tags:
      - subpackage_speechToText
      parameters:
      - name: uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: page
        in: query
        required: true
        schema:
          type: integer
          default: 1
      - name: per_page
        in: query
        required: false
        schema:
          type: integer
          default: 25
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of questions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speech-to-Text_listTranscriptQuestions_Response_200'
  /speech-to-text/{uuid}/questions/{question_uuid}:
    get:
      operationId: get-transcript-question
      summary: Get intelligence question status
      description: Check the status of a specific question
      tags:
      - subpackage_speechToText
      parameters:
      - name: uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: question_uuid
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Question details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Speech-to-Text_getTranscriptQuestion_Response_200'
components:
  schemas:
    SpeechToTextPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        status:
          $ref: '#/components/schemas/SpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      title: SpeechToTextPostResponsesContentApplicationJsonSchemaItem
    SpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus:
      type: string
      enum:
      - pending
      - processing
      - completed
      - failed
      title: SpeechToTextPostResponsesContentApplicationJsonSchemaItemStatus
    SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaMeta:
      type: object
      properties: {}
      title: SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaMeta
    SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemWordsItems:
      type: object
      properties:
        text:
          type: string
        start_time:
          type: number
          format: double
        end_time:
          type: number
          format: double
        speaker_id:
          type: string
      title: SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemWordsItems
    Speech-to-Text_askTranscriptQuestion_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/SpeechToTextUuidAskPostResponsesContentApplicationJsonSchemaItem'
      title: Speech-to-Text_askTranscriptQuestion_Response_200
    Error:
      type: object
      properties:
        success:
          type: boolean
        error:
          type: string
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
        message:
          type: string
      title: Error
    Speech-to-Text_getTranscript_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItem'
      title: Speech-to-Text_getTranscript_Response_200
    SpeechToTextGetResponsesContentApplicationJsonSchemaMeta:
      type: object
      properties:
        page:
          type: integer
        per_page:
          type: integer
        total_pages:
          type: integer
        total_items:
          type: integer
      title: SpeechToTextGetResponsesContentApplicationJsonSchemaMeta
    SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus:
      type: string
      enum:
      - pending
      - processing
      - completed
      - failed
      title: SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus
    SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        query:
          type: string
        answer:
          type: string
        status:
          type: string
        created_at:
          type: string
          format: date-time
      title: SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaItemsItems
    Speech-to-Text_createTranscript_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/SpeechToTextPostResponsesContentApplicationJsonSchemaItem'
      title: Speech-to-Text_createTranscript_Response_200
    SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        status:
          $ref: '#/components/schemas/SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemStatus'
        text:
          type: string
        words:
          type: array
          items:
            $ref: '#/components/schemas/SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItemWordsItems'
        duration_seconds:
          type: number
          format: double
        file_url:
          type: string
          format: uri
        query:
          type: string
        answer:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      title: SpeechToTextUuidGetResponsesContentApplicationJsonSchemaItem
    Speech-to-Text_listTranscripts_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/SpeechToTextGetResponsesContentApplicationJsonSchemaItemsItems'
        meta:
          $ref: '#/components/schemas/SpeechToTextGetResponsesContentApplicationJsonSchemaMeta'
      title: Speech-to-Text_listTranscripts_Response_200
    Speech-to-Text_getTranscriptQuestion_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/SpeechToTextUuidQuestionsQuestionUuidGetResponsesContentApplicationJsonSchemaItem'
      title: Speech-to-Text_getTranscriptQuestion_Response_200
    SpeechToTextUuidAskPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        transcript_uuid:
          type: string
          format: uuid
        query:
          type: string
        status:
          type: string
        created_at:
          type: string
          format: date-time
      title: SpeechToTextUuidAskPostResponsesContentApplicationJsonSchemaItem
    SpeechToTextUuidQuestionsQuestionUuidGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        transcript_uuid:
          type: string
          format: uuid
        query:
          type: string
        answer:
          type: string
        status:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      title: SpeechToTextUuidQuestionsQuestionUuidGetResponsesContentApplicationJsonSchemaItem
    Speech-to-Text_listTranscriptQuestions_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaItemsItems'
        meta:
          $ref: '#/components/schemas/SpeechToTextUuidQuestionsGetResponsesContentApplicationJsonSchemaMeta'
      title: Speech-to-Text_listTranscriptQuestions_Response_200
    SpeechToTextGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        status:
          type: string
        duration_seconds:
          type: number
          format: double
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      title: SpeechToTextGetResponsesContentApplicationJsonSchemaItemsItems
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api