with Free Dictionary and Jina Reader?
Get the definition for an English word. See docs here
Converts a provided URL to an LLM-friendly input using Jina Reader. See the documentation
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: {
jina_reader: {
type: "app",
app: "jina_reader",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://r.jina.ai/https%3A%2F%2Fpipedream.com`,
headers: {
Authorization: `Bearer ${this.jina_reader.$auth.api_key}`,
},
})
},
})