with Free Dictionary and Have I Been Pwned?
Get the definition for an English word. See docs here
The Free Dictionary API provides a straightforward way to access dictionary definitions, synonyms, antonyms, and translations for words in multiple languages. With it, you can fetch detailed word meanings, usage examples, and phonetic transcriptions, enabling a variety of educational and linguistic automation opportunities on Pipedream. This API is valuable for developers looking to create language learning tools, content enrichment services, or to simply integrate rich lexical data into their applications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dictionary_api: {
type: "app",
app: "dictionary_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dictionaryapi.dev/api/v2/entries/en/<word>`,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
have_i_been_pwned: {
type: "app",
app: "have_i_been_pwned",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://haveibeenpwned.com/api/v3/subscribeddomains`,
headers: {
"hibp-api-key": `${this.have_i_been_pwned.$auth.api_key}`,
},
})
},
})