with Oxford Dictionaries and BippyBox?
Triggers the BippyBox to play an audio file. See the documentation
The Oxford Dictionaries API offers a treasure trove of linguistic data, from definitions to pronunciations, and can be a goldmine for language-related apps. Use it on Pipedream to create workflows that leverage its expansive vocab database. Automate word info retrieval, integrate with quizzes, or enrich language learning platforms— the API is your oyster.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
oxford_dictionaries: {
type: "app",
app: "oxford_dictionaries",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://od-api.oxforddictionaries.com/api/v2/languages`,
headers: {
"app_id": `${this.oxford_dictionaries.$auth.app_id}`,
"app_key": `${this.oxford_dictionaries.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bippybox: {
type: "app",
app: "bippybox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://us-central1-bippyboxv2.cloudfunctions.net/getUserData`,
headers: {
"x-api-key": `${this.bippybox.$auth.api_key}`,
},
})
},
})