Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Scores a scripted recording based on fluency and pronunciation. See the documentation
Transcribes and scores a provided speech recording. See the documentation
The Speechace API offers capabilities for detailed speech analysis, particularly useful for language learning applications. With this API, you can assess users' pronunciation and fluency in English by analyzing audio inputs. In Pipedream, you can leverage this API to craft workflows that trigger on various events, process audio data, and perform actions based on the analysis—such as storing results, providing feedback, or integrating with other services for enhanced functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
speechace: {
type: "app",
app: "speechace",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.speechace.co/api/validating/text/v9/json`,
params: {
key: `${this.speechace.$auth.product_key}`,
dialect: `en-us`,
text: `Welcome to the world of workflow automation.`,
},
})
},
})