Datumbox offers an innovative Machine Learning platform specialized in Natural Language Processing.
Go to siteGo to the Datumbox API docs to find out what you can build using their API!
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
datumbox: {
type: "app",
app: "datumbox",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.datumbox.com/1.0/SentimentAnalysis.json`,
params: {
api_key: `${this.datumbox.$auth.api_key}`,
text: `YOUR_TEXT`,
},
})
},
})
Datumbox uses API keys for authentication. When you connect your Datumbox account, Pipedream securely stores the keys so you can easily authenticate to Datumbox APIs in both code and no-code steps.
Sign in and copy your API key from the API Key & Credentials page