IBM Cloud - Speech to Text

Speech to Text

Go to site
Explore
/
Apps
/
IBM Cloud - Speech to Text

IBM Cloud - Speech to Text API Integrations

Build and run workflows using the IBM Cloud - Speech to Text API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The IBM Cloud Speech to Text API can be used to transcribe audio files in a variety of different languages. This can be useful for a number of different applications, such as:

  • Transcribing audio files for transcriptions
  • Transcribing audio files for subtitles
  • Transcribing audio files for meeting minutes
  • Transcribing audio files for legal documents
  • Etc.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ibm_cloud_speech_to_text: {
      type: "app",
      app: "ibm_cloud_speech_to_text",
    }
  },
  async run({steps, $}) {
    const data = {
      "text": `hello world`,
    }
    return await axios($, {
      method: "post",
      url: `${this.ibm_cloud_speech_to_text.$auth.instance_url}/v1/synthesize`,
      headers: {
        "Content-Type": `application/json`,
        "Accept": `audio/wav`,
      },
      auth: {
        username: `apikey`,
        password: `${this.ibm_cloud_speech_to_text.$auth.api_key}`,
      },
      data,
    })
  },
})

Authentication

IBM Cloud - Speech to Text uses API keys for authentication. When you connect your IBM Cloud - Speech to Text account, Pipedream securely stores the keys so you can easily authenticate to IBM Cloud - Speech to Text APIs in both code and no-code steps.