Deepgram · Arazzo Workflow

Deepgram Select a Model and Transcribe

Version 1.0.0

Browse available models, read the metadata for a chosen model, then transcribe audio with that model.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Artificial IntelligenceSpeech-to-TextText-to-SpeechTranscriptionVoice AIArazzoWorkflows

Provider

deepgram

Workflows

select-model-and-transcribe
List models, inspect one, and transcribe audio using it.
Lists available models, reads metadata for a chosen model id, and transcribes a hosted audio file using the supplied model name.
3 steps inputs: apiKey, audioUrl, modelId, modelName outputs: canonicalName, languages, transcript
1
listModels
List the latest public speech-to-text and text-to-speech models available on the platform.
2
getModel
Read the detailed metadata for the chosen model to confirm its languages, architecture, and version before transcribing.
3
transcribeWithModel
Submit the hosted audio file for transcription using the selected model with punctuation and smart formatting enabled.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Deepgram Select a Model and Transcribe
  summary: Browse available models, read the metadata for a chosen model, then transcribe audio with that model.
  description: >-
    A model-aware transcription flow. The workflow lists the speech-to-text and
    text-to-speech models available on the platform, reads the detailed metadata
    for a specific model to confirm its languages and version, and then submits
    a pre-recorded audio URL for transcription using that model's canonical
    name. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: modelsApi
  url: ../openapi/deepgram-models-api-openapi.yml
  type: openapi
- name: preRecordedApi
  url: ../openapi/deepgram-pre-recorded-api-openapi.yml
  type: openapi
workflows:
- workflowId: select-model-and-transcribe
  summary: List models, inspect one, and transcribe audio using it.
  description: >-
    Lists available models, reads metadata for a chosen model id, and
    transcribes a hosted audio file using the supplied model name.
  inputs:
    type: object
    required:
    - apiKey
    - modelId
    - modelName
    - audioUrl
    properties:
      apiKey:
        type: string
        description: Deepgram API key used to authenticate requests.
      modelId:
        type: string
        description: The model identifier to fetch metadata for.
      modelName:
        type: string
        description: The model name to pass to transcription (e.g. nova-3).
      audioUrl:
        type: string
        description: Publicly accessible URL of the audio file to transcribe.
  steps:
  - stepId: listModels
    description: >-
      List the latest public speech-to-text and text-to-speech models available
      on the platform.
    operationId: listModels
    parameters:
    - name: Authorization
      in: header
      value: Token $inputs.apiKey
    - name: include_outdated
      in: query
      value: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sttModels: $response.body#/stt
      ttsModels: $response.body#/tts
  - stepId: getModel
    description: >-
      Read the detailed metadata for the chosen model to confirm its languages,
      architecture, and version before transcribing.
    operationId: getModel
    parameters:
    - name: Authorization
      in: header
      value: Token $inputs.apiKey
    - name: model_id
      in: path
      value: $inputs.modelId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      canonicalName: $response.body#/canonical_name
      languages: $response.body#/languages
      version: $response.body#/version
  - stepId: transcribeWithModel
    description: >-
      Submit the hosted audio file for transcription using the selected model
      with punctuation and smart formatting enabled.
    operationId: transcribePreRecordedAudio
    parameters:
    - name: Authorization
      in: header
      value: Token $inputs.apiKey
    - name: model
      in: query
      value: $inputs.modelName
    - name: punctuate
      in: query
      value: true
    - name: smart_format
      in: query
      value: true
    requestBody:
      contentType: application/json
      payload:
        url: $inputs.audioUrl
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      transcript: $response.body#/results/channels/0/alternatives/0/transcript
      requestId: $response.body#/metadata/request_id
  outputs:
    canonicalName: $steps.getModel.outputs.canonicalName
    languages: $steps.getModel.outputs.languages
    transcript: $steps.transcribeWithModel.outputs.transcript

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/deepgram-select-model-and-transcribe-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.