with SzybkiSMS and Datumbox?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
szybkisms: {
type: "app",
app: "szybkisms",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.szybkisms.$auth.api_url}/ping`,
headers: {
Authorization: `Bearer ${this.szybkisms.$auth.access_token}`,
},
})
},
})
The Datumbox API offers a robust suite of Machine Learning services that can enrich your applications with advanced text analysis, sentiment analysis, classification, and more. Leveraging this API on Pipedream allows you to create powerful serverless workflows that connect Datumbox's capabilities with numerous other apps and services. Automate content categorization, extract insights from user feedback, or monitor social media sentiment in real-time.
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`,
},
})
},
})